mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
14 lines
172 B
Bash
Executable file
14 lines
172 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e -o pipefail
|
|
|
|
DIR=$(dirname "$0")
|
|
PROJECT=$DIR/../..
|
|
|
|
pushd $PROJECT
|
|
git fetch
|
|
git reset FETCH_HEAD --hard
|
|
git clean -fdx
|
|
popd
|
|
|
|
$DIR/reinstall.sh |