5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-19 00:59:37 +00:00
yggdrasil-go/build
Arceliar c4d28c4f65
Update build
More portable way to strip the `.go` extension from files when packing with upx.
2018-06-21 09:29:05 -05:00

26 lines
417 B
Bash
Executable File

#!/bin/sh
while getopts ud option
do
case "${option}"
in
u) UPX=true;;
d) DEBUG=true;;
esac
done
export GOPATH=$PWD
echo "Downloading..."
go get -d -v
go get -d -v yggdrasil
for file in *.go ; do
echo "Building: $file"
#go build $@ $file
if [ $DEBUG ]; then
go build -tags debug -v $file
else
go build -ldflags="-s -w" -v $file
fi
if [ $UPX ]; then
upx --brute ${file%.go}
fi
done