mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
16 lines
351 B
Bash
16 lines
351 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e -o pipefail
|
||
|
|
||
|
DIR=$(dirname "$0")
|
||
|
PROJECT=$DIR/../..
|
||
|
|
||
|
pushd $PROJECT
|
||
|
go install -v -trimpath -ldflags "-s -w -buildid=" -tags no_gvisor,with_quic ./cmd/sing-box
|
||
|
popd
|
||
|
|
||
|
sudo systemctl stop sing-box
|
||
|
sudo cp $(go env GOPATH)/bin/sing-box /usr/local/bin/
|
||
|
sudo systemctl start sing-box
|
||
|
sudo journalctl -u sing-box --output cat -f
|