Skip to content

Commit

Permalink
fixed gitman pull
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Mar 27, 2024
1 parent afa70f6 commit 7350d4f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ echo "$REPOS" | while IFS= read -r REPO; do
echo "$0: cloning '$URL --depth 1 --branch $BRANCH' into '$PACKAGE'"
git clone $URL --recurse-submodules --shallow-submodules --depth 1 --branch $BRANCH $PACKAGE

if [[ "$GITMAN" != "True" ]]; then
if [[ "$GITMAN" == "True" ]]; then
cd $PACKAGE
[[ -e .gitman.yml || -e .gitman.yaml ]] && gitman install
fi
Expand Down
2 changes: 1 addition & 1 deletion .ci/build_for_testing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ echo "$FULL_COVERAGE_REPOS" | while IFS= read -r REPO; do
echo "$0: cloning '$URL --depth 1 --branch $BRANCH' into '$PACKAGE'"
git clone $URL --recurse-submodules --shallow-submodules --depth 1 --branch $BRANCH $PACKAGE

if [[ "$GITMAN" != "True" ]]; then
if [[ "$GITMAN" == "True" ]]; then
cd $PACKAGE
[[ -e .gitman.yml || -e .gitman.yaml ]] && gitman install
fi
Expand Down
2 changes: 1 addition & 1 deletion .ci/build_nonbloom.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ git clone $URL --recurse-submodules --branch $BRANCH $PACKAGE

cd $WORK_DIR/$PACKAGE/

if [[ "$GITMAN" != "True" ]]; then
if [[ "$GITMAN" == "True" ]]; then
[[ -e .gitman.yml || -e .gitman.yaml ]] && gitman install
fi

Expand Down
2 changes: 1 addition & 1 deletion .ci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ echo "$THIS_TEST_REPOS" | while IFS= read -r REPO; do
[ ! -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"

if [[ "$GITMAN" != "True" ]]; then
if [[ "$GITMAN" == "True" ]]; then
cd $PACKAGE
[[ -e .gitman.yml || -e .gitman.yaml ]] && gitman install || echo "no gitman modules to install"
fi
Expand Down

0 comments on commit 7350d4f

Please sign in to comment.