diff options
| author | coqbot-app[bot] | 2020-09-22 10:52:15 +0000 |
|---|---|---|
| committer | GitHub | 2020-09-22 10:52:15 +0000 |
| commit | 16813b57cee24ffd46e4d3d50efa63d6c61fd9e6 (patch) | |
| tree | 9a21d9d467f73c3df7c79121a0207c368c7d0c90 /dev | |
| parent | 4ebdfae3640056bfb509d9b293636f4ca3427805 (diff) | |
| parent | fef5b75e72e1dc2889875616f56332a00dc50534 (diff) | |
Merge PR #13063: Make print-pretty-timed robust against non-output-sync logs
Reviewed-by: SkySkimmer
Diffstat (limited to 'dev')
| -rw-r--r-- | dev/ci/ci-common.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/ci/ci-common.sh b/dev/ci/ci-common.sh index c01bc57f72..f9187d53a6 100644 --- a/dev/ci/ci-common.sh +++ b/dev/ci/ci-common.sh @@ -97,9 +97,9 @@ make() if [ -z "${MAKEFLAGS+x}" ] && [ -n "${NJOBS}" ]; then # Not submake and parallel make requested - command make -j "$NJOBS" "$@" + command make --output-sync -j "$NJOBS" "$@" else - command make "$@" + command make --output-sync "$@" fi } |
