diff --git a/.ci/test.sh b/.ci/test.sh index 2c5166af6d..99ef021e82 100755 --- a/.ci/test.sh +++ b/.ci/test.sh @@ -52,8 +52,8 @@ echo "$THIS_TEST_REPOS" | while IFS= read -r REPO; do URL=$(echo "$REPO" | awk '{print $2}') BRANCH=$(echo "$REPO" | awk '{print $3}') - [ ! -e ${PACKAGE} ] && echo "$0: cloning '$URL --depth 1 --branch $BRANCH' into '$PACKAGE'" - [ ! -e ${PACKAGE} ] && git clone $URL --recurse-submodules --shallow-submodules --depth 1 --branch $BRANCH $PACKAGE + [ ! -e ${PACKAGE} ] && echo "$0: cloning '$URL --depth 1 --branch $BRANCH' into '$PACKAGE'" || echo "$0: not cloning, already there" + [ ! -e ${PACKAGE} ] && git clone $URL --recurse-submodules --shallow-submodules --depth 1 --branch $BRANCH $PACKAGE || echo "$0: not cloning, already there" done