aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorMark Friedenbach <mark@friedenbach.org>2022-04-20 12:50:37 -0700
committerAlfonso Roman Zubeldia <alfonsoromanz24@gmail.com>2024-01-11 15:36:18 -0300
commit4756114e505cff8848fb6344ef9a48d8822066c1 (patch)
tree53338abcfbc49712e2173be936325b4758715cbf /ci
parent4baa162dbb3c6464e196a4a21fe63794859021b4 (diff)
[depends] Allow PATH with spaces in directory names.
added test and update code based on feedback
Diffstat (limited to 'ci')
-rwxr-xr-xci/test/02_run_container.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/02_run_container.sh b/ci/test/02_run_container.sh
index 64b1e4e182..8a7a978994 100755
--- a/ci/test/02_run_container.sh
+++ b/ci/test/02_run_container.sh
@@ -70,7 +70,7 @@ if [ "$CI_OS_NAME" == "macos" ]; then
fi
CI_EXEC () {
- $CI_EXEC_CMD_PREFIX bash -c "export PATH=${BINS_SCRATCH_DIR}:${BASE_ROOT_DIR}/ci/retry:\$PATH && cd \"${BASE_ROOT_DIR}\" && $*"
+ $CI_EXEC_CMD_PREFIX bash -c "export PATH=\"/path_with space:${BINS_SCRATCH_DIR}:${BASE_ROOT_DIR}/ci/retry:\$PATH\" && cd \"${BASE_ROOT_DIR}\" && $*"
}
export -f CI_EXEC