Skip to content

Commit 97c0a89

Browse files
committed
Change depinst call so that always uses "-C"
1 parent 3e04de4 commit 97c0a89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ jobs:
525525
fi
526526
if [ "$GIT_HAS_JOBS" -ne 0 ]
527527
then
528-
DEPINST_ARGS+=("-C" "--git_args" "--jobs $GIT_FETCH_JOBS")
528+
DEPINST_ARGS+=("--git_args" "--jobs $GIT_FETCH_JOBS")
529529
fi
530530
mkdir -p snapshot
531531
cd snapshot
@@ -548,7 +548,7 @@ jobs:
548548
rm -rf "../snapshot"
549549
git submodule update --init tools/boostdep
550550
DEPINST_ARGS+=("$LIBRARY")
551-
python tools/boostdep/depinst/depinst.py "${DEPINST_ARGS[@]}"
551+
python tools/boostdep/depinst/depinst.py -C "${DEPINST_ARGS[@]}"
552552
./bootstrap.sh
553553
./b2 headers
554554
if [ -n "${{matrix.compiler}}" -o -n "$GCC_TOOLCHAIN_ROOT" ]

0 commit comments

Comments
 (0)