diff --git a/.ci/monolithic-linux.sh b/.ci/monolithic-linux.sh index 03cf38b90c08f..311488b2c2878 100755 --- a/.ci/monolithic-linux.sh +++ b/.ci/monolithic-linux.sh @@ -52,4 +52,5 @@ cmake -S ${MONOREPO_ROOT}/llvm -B ${BUILD_DIR} \ -D LLVM_CCACHE_BUILD=ON echo "--- ninja" -ninja -C ${BUILD_DIR} ${targets} +# Targets are not escaped as they are passed as separate arguments. +ninja -C "${BUILD_DIR}" ${targets} diff --git a/.ci/monolithic-windows.sh b/.ci/monolithic-windows.sh index 83be9d04b9927..00c3037c4c4fd 100755 --- a/.ci/monolithic-windows.sh +++ b/.ci/monolithic-windows.sh @@ -51,4 +51,5 @@ cmake -S ${MONOREPO_ROOT}/llvm -B ${BUILD_DIR} \ -D CMAKE_CXX_COMPILER_LAUNCHER=sccache echo "--- ninja" -ninja -C "${BUILD_DIR}" "${targets}" +# Targets are not escaped as they are passed as separate arguments. +ninja -C "${BUILD_DIR}" ${targets}