Skip to content

Commit

Permalink
[minor] tweak output formatting when command fails to start
Browse files Browse the repository at this point in the history
  • Loading branch information
cdzombak committed Jan 7, 2024
1 parent 6f45cb8 commit 2428c68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func runner(config *runConfig) *runOutput {
// runner does not consider this an error.
err = nil
} else {
cmdOutStr = fmt.Sprintf("Error: Failed to run '%s': %s", cmd.String(), err)
cmdOutStr = fmt.Sprintf("Error: Failed to run '%s': %s\n", cmd.String(), err)
}
}

Expand Down

0 comments on commit 2428c68

Please sign in to comment.