platform: Unify client versions

This commit is contained in:
世界
2024-02-16 13:28:58 +08:00
parent 5583e01c99
commit 2446b9482c
7 changed files with 57 additions and 11 deletions

14
.github/update_clients.sh vendored Executable file
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"