ovpn-admin/build.sh

12 lines
239 B
Bash
Raw Normal View History

2021-10-05 11:09:29 -04:00
#!/usr/bin/env bash
2020-05-14 19:13:33 -04:00
PATH=$PATH:~/go/bin
2021-10-05 11:09:29 -04:00
cd frontend && npm install && npm run build && cd ..
packr2
2021-11-29 05:40:05 -05:00
CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -a -tags netgo -ldflags "-linkmode external -extldflags -static -s -w" $@
packr2 clean