sing-box/release/local/debug.sh

23 lines
494 B
Bash
Raw Normal View History

2022-07-30 06:50:33 +00:00
#!/usr/bin/env bash
set -e -o pipefail
2022-08-27 14:27:58 +00:00
if [ -d /usr/local/go ]; then
export PATH="$PATH:/usr/local/go/bin"
fi
2022-07-30 06:50:33 +00:00
DIR=$(dirname "$0")
PROJECT=$DIR/../..
pushd $PROJECT
git fetch
git reset FETCH_HEAD --hard
git clean -fdx
2022-08-19 09:48:56 +00:00
go install -v -trimpath -ldflags "-s -w -buildid=" -tags no_gvisor,with_quic,with_acme,debug ./cmd/sing-box
2022-07-30 06:50:33 +00:00
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