Browse Source

Tools/check_submodules.sh silence normal git output

sbg
Daniel Agar 6 years ago
parent
commit
50d1db3372
  1. 13
      Tools/check_submodules.sh

13
Tools/check_submodules.sh

@ -6,11 +6,12 @@ function check_git_submodule {
if [[ -f $1"/.git" || -d $1"/.git" ]]; if [[ -f $1"/.git" || -d $1"/.git" ]];
then then
# CI environment always force update everything
if [ "$CI" == "true" ]; if [ "$CI" == "true" ];
then then
git submodule sync --recursive -- $1 git submodule --quiet sync --recursive -- $1
git submodule update --init --recursive --force -- $1 || true git submodule --quiet update --init --recursive --force -- $1 || true
git submodule update --init --recursive --force -- $1 git submodule --quiet update --init --recursive --force -- $1
exit 0 exit 0
fi fi
@ -53,9 +54,9 @@ then
fi fi
fi fi
else else
git submodule sync --recursive --quiet -- $1 git submodule --quiet sync --recursive --quiet -- $1
git submodule update --init --recursive -- $1 || true git submodule --quiet update --init --recursive -- $1 || true
git submodule update --init --recursive -- $1 git submodule --quiet update --init --recursive -- $1
fi fi
} }

Loading…
Cancel
Save