refactor: remove newlines from formatter print functions (#1137)

This commit is contained in:
Pete Davison
2023-04-27 01:20:06 +01:00
committed by GitHub
parent 1e8fc5011b
commit 8cfac5a25a
11 changed files with 58 additions and 58 deletions

View File

@@ -255,7 +255,7 @@ func run() error {
}
if err := e.Run(ctx, calls...); err != nil {
e.Logger.Errf(logger.Red, "%v", err)
e.Logger.Errf(logger.Red, "%v\n", err)
if exitCode {
if err, ok := err.(*errors.TaskRunError); ok {