5 lines
114 B
Plaintext
5 lines
114 B
Plaintext
|
#!/bin/bash
|
||
|
cd $2
|
||
|
CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o $1 . 1>&2
|
||
|
tar -cf - $1
|