mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-21 21:55:34 +08:00
check_submodules.sh don't force update in CI
This commit is contained in:
@@ -6,12 +6,12 @@ function check_git_submodule {
|
||||
if [[ -f $1"/.git" || -d $1"/.git" ]];
|
||||
then
|
||||
|
||||
# CI environment always force update everything
|
||||
# CI environment always update
|
||||
if [ "$CI" == "true" ];
|
||||
then
|
||||
git submodule --quiet sync --recursive -- $1
|
||||
git submodule --quiet update --init --recursive --force -- $1 || true
|
||||
git submodule --quiet update --init --recursive --force -- $1
|
||||
git submodule --quiet update --init --recursive -- $1 || true
|
||||
git submodule --quiet update --init --recursive -- $1
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user