ovpn-admin/build.sh

12 lines
235 B
Bash
Raw Permalink Normal View History

2021-10-05 18:09:29 +03:00
#!/usr/bin/env bash
2020-05-15 02:13:33 +03:00
PATH=$PATH:~/go/bin
2021-10-05 18:09:29 +03:00
cd frontend && npm install && npm run build && cd ..
packr2
2021-03-17 16:05:37 +07:00
CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -ldflags "-linkmode external -extldflags -static -s -w" -o ovpn-admin
packr2 clean