mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
21 lines
534 B
Bash
Executable file
21 lines
534 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
|
|
go install -v -trimpath -ldflags "-s -w -buildid=" -tags with_quic,with_wireguard,with_acme ./cmd/sing-box
|
|
popd
|
|
|
|
sudo cp $(go env GOPATH)/bin/sing-box /usr/local/bin/
|
|
sudo mkdir -p /usr/local/etc/sing-box
|
|
sudo cp $PROJECT/release/config/config.json /usr/local/etc/sing-box/config.json
|
|
sudo cp $DIR/sing-box.service /etc/systemd/system
|
|
sudo systemctl daemon-reload
|