mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
23 lines
484 B
Bash
Executable file
23 lines
484 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e -o pipefail
|
|
|
|
if [ -d /usr/local/go ]; then
|
|
export PATH="$PATH:/usr/local/go/bin"
|
|
fi
|
|
|
|
DIR=$(dirname "$0")
|
|
PROJECT=$DIR/../..
|
|
|
|
pushd $PROJECT
|
|
git fetch
|
|
git reset FETCH_HEAD --hard
|
|
git clean -fdx
|
|
go install -v -trimpath -ldflags "-s -w -buildid=" -tags with_quic,with_acme,debug ./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
|