12 lines
183 B
Bash
Executable File
12 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
# Build the binary.
|
|
go build --ldflags '-extldflags "-static" -s' pause.go
|
|
|
|
# Run goupx to shrink binary size.
|
|
go get github.com/pwaller/goupx
|
|
goupx pause
|