From 8c2d451b999a37dfb0decd788f85125c2035e6cc Mon Sep 17 00:00:00 2001 From: Nicole Lemaster Slattengren Date: Thu, 19 May 2022 13:35:10 -0700 Subject: [PATCH] #1816: ci: fix parallelism option in build_cpp script --- ci/build_cpp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build_cpp.sh b/ci/build_cpp.sh index 535c2b33ce..b5b4ec1aff 100755 --- a/ci/build_cpp.sh +++ b/ci/build_cpp.sh @@ -19,7 +19,7 @@ fi if [ -z ${4} ]; then dashj="" else - dashj="-j${4}" + dashj="-j ${4}" fi if hash ccache &>/dev/null