mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-08 18:20:25 +00:00
11 lines
214 B
Bash
Executable File
11 lines
214 B
Bash
Executable File
#!/bin/bash
|
|
export GOPATH=$PWD
|
|
echo "Downloading..."
|
|
go get -d -v yggdrasil
|
|
for file in *.go ; do
|
|
echo "Building: $file"
|
|
go build -v $file
|
|
#go build -ldflags="-s -w" -v $file
|
|
#upx --brute ${file/.go/}
|
|
done
|