58a2428ed1
Signed-off-by: kim (grufwub) <grufwub@gmail.com>
7 lines
205 B
Bash
Executable File
7 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Building for current platform..."
|
|
CGO_ENABLED=1 go build -trimpath -o 'gophor' -buildmode 'pie' -a -tags 'netgo' -ldflags '-s -w -extldflags "-static"'
|
|
upx --best --color 'gophor'
|
|
echo ""
|