Skip to content

Commit 25b8de2

Browse files
committed
[build-script] Tests should fail if one of test commands failed.
1 parent 289d239 commit 25b8de2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build-script-impl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2311,7 +2311,7 @@ for deployment_target in "${STDLIB_DEPLOYMENT_TARGETS[@]}"; do
23112311
# executing ninja directly, have it dump the commands it would
23122312
# run, strip Ninja's progress prefix with sed, and tell the
23132313
# shell to execute that.
2314-
sh -c "set -x && $("${build_cmd[@]}" -n -v ${target} | sed -e 's/[^]]*] //')"
2314+
sh -e -x -c "$("${build_cmd[@]}" -n -v ${target} | sed -e 's/[^]]*] //')"
23152315
else
23162316
set -x
23172317
"${build_cmd[@]}" ${BUILD_TARGET_FLAG} ${target}

0 commit comments

Comments
 (0)