commit 6ebbc2c66c18559e582f3b3962a258faf604042e
parent 74ba921375170e059b5ea2bd62688ee314980187
Author: Devan Carpenter <devan@taler.net>
Date: Wed, 10 May 2023 14:50:14 -0500
buildbot: sync any url changes in submodules
If a submodule remote url changes then we want to sync that change in a
given super-project. That's what "git submodule sync" does for us.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/buildbot/update-sources.sh b/buildbot/update-sources.sh
@@ -22,10 +22,12 @@ do
git -C $P clean -fdx
git -C $P fetch
git -C $P reset --hard origin/master
+ git submodule sync --recursive
git submodule update --init
else
cd $HOME/sources
git clone ${BASE_URL}$n
+ git submodule sync --recursive
git submodule update --init
cd -
fi