From 97c0a899cc623f18ee087553736cc5e01cd281f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 30 Nov 2025 17:24:08 +0100 Subject: [PATCH] Change depinst call so that always uses "-C" --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd7699a..805d5a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -525,7 +525,7 @@ jobs: fi if [ "$GIT_HAS_JOBS" -ne 0 ] then - DEPINST_ARGS+=("-C" "--git_args" "--jobs $GIT_FETCH_JOBS") + DEPINST_ARGS+=("--git_args" "--jobs $GIT_FETCH_JOBS") fi mkdir -p snapshot cd snapshot @@ -548,7 +548,7 @@ jobs: rm -rf "../snapshot" git submodule update --init tools/boostdep DEPINST_ARGS+=("$LIBRARY") - python tools/boostdep/depinst/depinst.py "${DEPINST_ARGS[@]}" + python tools/boostdep/depinst/depinst.py -C "${DEPINST_ARGS[@]}" ./bootstrap.sh ./b2 headers if [ -n "${{matrix.compiler}}" -o -n "$GCC_TOOLCHAIN_ROOT" ]