1
0
mirror of https://github.com/flant/ovpn-admin.git synced 2025-02-10 18:31:03 +02:00
ovpn-admin/build.sh

13 lines
276 B
Bash
Raw Normal View History

2020-05-15 02:13:33 +03: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 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