We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cdb268 commit 1ec2c08Copy full SHA for 1ec2c08
cmd/gh/main.go
@@ -145,7 +145,7 @@ func mainRun() exitCode {
145
if errors.As(err, &execError) {
146
return exitCode(execError.ExitCode())
147
}
148
- fmt.Fprintf(stderr, "failed to run external command: %s", err)
+ fmt.Fprintf(stderr, "failed to run external command: %s\n", err)
149
return exitError
150
151
@@ -157,7 +157,7 @@ func mainRun() exitCode {
157
158
159
160
- fmt.Fprintf(stderr, "failed to run extension: %s", err)
+ fmt.Fprintf(stderr, "failed to run extension: %s\n", err)
161
162
} else if found {
163
return exitOK
0 commit comments