mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 10:33:14 +00:00
15 lines
215 B
Bash
Executable file
15 lines
215 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
PROJECTS=$(dirname "$0")/../..
|
|
|
|
function updateClient() {
|
|
pushd clients/$1
|
|
git fetch
|
|
git reset FETCH_HEAD --hard
|
|
popd
|
|
git add clients/$1
|
|
}
|
|
|
|
updateClient "apple"
|
|
updateClient "android"
|