[CI] Hotfix: CI runs failing due to target escaping (#86897)

My patch #86877 contains a mistake.
Should have read the comment.
Recent buildkite runs fail because of this, so it is a bit urgent.
This commit is contained in:
Marc Auberer
2024-03-28 02:03:24 +01:00
committed by GitHub
parent 17ab9e6446
commit 64f0410193
2 changed files with 2 additions and 2 deletions

View File

@@ -54,4 +54,4 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
echo "--- ninja"
# Targets are not escaped as they are passed as separate arguments.
ninja -C "${BUILD_DIR}" -k 0 "${targets}"
ninja -C "${BUILD_DIR}" -k 0 ${targets}

View File

@@ -62,4 +62,4 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
echo "--- ninja"
# Targets are not escaped as they are passed as separate arguments.
ninja -C "${BUILD_DIR}" -k 0 "${targets}"
ninja -C "${BUILD_DIR}" -k 0 ${targets}