mirror of
https://github.com/boringproxy/boringproxy.git
synced 2025-02-25 18:55:29 -06:00
5 lines
162 B
Bash
Executable File
5 lines
162 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo Building platform $1-$2
|
|
CGO_ENABLED=0 GOOS=$1 GOARCH=$2 go build -ldflags "-X main.Version=$(git describe --tags)" -o build/boringproxy-$1-$2$3
|