sing-box/release/local/reinstall.sh

20 lines
440 B
Bash
Raw Normal View History

2022-08-11 03:44:54 +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-08-11 03:44:54 +00:00
DIR=$(dirname "$0")
PROJECT=$DIR/../..
pushd $PROJECT
2022-09-15 04:20:38 +00:00
go install -v -trimpath -ldflags "-s -w -buildid=" -tags with_quic,with_wireguard,with_acme ./cmd/sing-box
2022-08-11 03:44:54 +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