diff --git a/pkg/runner/command.go b/pkg/runner/command.go index f14eb7a..9fafcdf 100644 --- a/pkg/runner/command.go +++ b/pkg/runner/command.go @@ -77,7 +77,8 @@ func (rc *RunContext) commandHandler(ctx context.Context) common.LineHandler { logger.Infof(" \U00002753 %s", line) } - return false + // return true to let gitea's logger handle these special outputs also + return true } }