Files
Archive/sing-box/.github/update_clients.sh
T
2024-03-05 02:32:38 -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"