platform: Unify client versions

This commit is contained in:
世界
2024-02-24 13:20:27 +08:00
parent 5583e01c99
commit 80d1aebcb7
7 changed files with 57 additions and 11 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/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"