1
0
mirror of https://github.com/flant/ovpn-admin.git synced 2025-02-04 18:20:57 +02:00
ovpn-admin/build.sh

12 lines
239 B
Bash
Raw 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-11-29 13:40:05 +03:00
CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -a -tags netgo -ldflags "-linkmode external -extldflags -static -s -w" $@
packr2 clean