5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-19 16:09:36 +00:00
yggdrasil-go/build

26 lines
417 B
Plaintext
Raw Normal View History

2018-02-18 22:07:27 +00:00
#!/bin/sh
while getopts ud option
do
case "${option}"
in
u) UPX=true;;
d) DEBUG=true;;
esac
done
2017-12-29 04:16:20 +00:00
export GOPATH=$PWD
echo "Downloading..."
go get -d -v
2017-12-29 04:16:20 +00:00
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
2017-12-29 04:16:20 +00:00
done