Updated scripts to support git submodules

This commit is contained in:
2021-01-28 11:00:11 -05:00
parent 4b70631e63
commit 025c693f87
5 changed files with 1615 additions and 3 deletions

View File

@ -5,6 +5,9 @@ function do_git {
cd $1
git ls-remote --get-url
git pull
if [ -f .gitmodules ]; then
git pull --recurse-submodules
fi
cd ..
echo
}