We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c021b0a commit fd6b030Copy full SHA for fd6b030
build/bin/sage-logger
@@ -90,10 +90,8 @@ else
90
# We trap SIGINT such that SIGINT interrupts the main process being
91
# run, not the logging.
92
93
-
94
95
( exec 2>&1; eval "$cmd" ) | \
96
- ( trap '' SIGINT; if [ -n "$$(GITHUB_ACTIONS)" ]; then echo "::group::${logname}"; fi; tee -a "$logfile" | $SED; if [ -n "$$(GITHUB_ACTIONS)" ]; then echo "::endgroup::"; fi )
+ ( trap '' SIGINT; if [ -n "$GITHUB_ACTIONS" -a -n "$prefix" ]; then echo "::group::${logname}"; fi; tee -a "$logfile" | $SED; if [ -n "$GITHUB_ACTIONS" -a -n "$prefix" ]; then echo "::endgroup::"; fi )
97
98
pipestatus=(${PIPESTATUS[*]})
99
0 commit comments