Skip to content

Commit f47be1a

Browse files
authored
Remove --output-sync from build log when make fails (#2010)
This should make it a bit easier to debug cases like #2009 (comment)
1 parent dd6d684 commit f47be1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

etc/ci/github-actions-make.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ cat time-of-build-pretty.log
6161
if [ ! -f finished.ok ]; then
6262
# see https://stackoverflow.com/a/15394738/377022 for more alternatives
6363
if [[ ! " $* " =~ " validate " ]]; then
64-
make "$@" ${OUTPUT_SYNC} TIMED=1 TIMING=1 VERBOSE=1 || exit $?
64+
make "$@" TIMED=1 TIMING=1 VERBOSE=1 || exit $?
6565
else
6666
exit 1
6767
fi

0 commit comments

Comments
 (0)