mirror of
https://github.com/cbeuw/Cloak.git
synced 2024-11-03 23:15:18 +00:00
35 lines
796 B
Bash
Executable File
35 lines
796 B
Bash
Executable File
go get github.com/mitchellh/gox
|
|
|
|
mkdir -p release
|
|
|
|
read -p "Cleaning $PWD/release directory. Proceed? [y/n]" res
|
|
if [ ! "$res" == "y" ]; then
|
|
echo "Abort"
|
|
exit 1
|
|
fi
|
|
|
|
rm -rf ./release/*
|
|
|
|
|
|
if [ -z "$v" ]; then
|
|
echo "Version number cannot be null. Run with v=[version] release.sh"
|
|
exit 1
|
|
fi
|
|
|
|
output="{{.Dir}}-{{.OS}}-{{.Arch}}-$v"
|
|
osarch="!darwin/arm !darwin/arm64"
|
|
|
|
echo "Compiling:"
|
|
|
|
os="windows linux darwin"
|
|
arch="amd64 386 arm arm64 mips mips64 mipsle mips64le"
|
|
pushd cmd/ck-client
|
|
gox -ldflags "-X main.version=${v}" -os="$os" -arch="$arch" -osarch="$osarch" -output="$output"
|
|
mv ck-client-* ../../release
|
|
|
|
os="linux"
|
|
arch="amd64 386 arm arm64"
|
|
pushd ../ck-server
|
|
gox -ldflags "-X main.version=${v}" -os="$os" -arch="$arch" -osarch="$osarch" -output="$output"
|
|
mv ck-server-* ../../release
|