12345678910111213141516171819202122 |
- #!/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= -checklinkname=0" -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
|