ovpn-admin/build.sh

13 lines
276 B
Bash
Raw Normal View History

2020-05-14 19:13:33 -04:00
#!/bin/bash
PATH=$PATH:~/go/bin
# go get -u github.com/gobuffalo/packr/v2/packr2
cd frontend && npm install && npm run build && cd ..
packr2
2021-03-17 05:05:37 -04:00
CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -ldflags "-linkmode external -extldflags -static -s -w" -o ovpn-admin
packr2 clean