Skip to content

Commit d5376b3

Browse files
committed
Update submodules
1 parent f82e3c8 commit d5376b3

File tree

9 files changed

+12
-9
lines changed

9 files changed

+12
-9
lines changed

scripts/switch-submodules-to-v3.bash

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ for d in */ ; do
88
pushd "$d"
99

1010
branch="v3"
11-
if [ "$d" = "go/" ]; then
11+
if [ "$d" = "dart/" ] || [ "$d" = "go/" ]; then
1212
branch="v1"
13+
elif [ "$d" = "android/" ]; then
14+
# Do not update Android to legacy v3 versions
15+
branch="main"
1316
fi
1417
(git fetch --prune && git switch "$branch" && git pull --ff-only) || true
1518

0 commit comments

Comments
 (0)