sing-box/.github/update_clients.sh
2024-02-24 13:20:27 +08:00

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"