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 164cfab commit d327987Copy full SHA for d327987
pkg/commands/run.go
@@ -284,7 +284,8 @@ func (e *Executor) initRun() {
284
}
285
e.rootCmd.AddCommand(e.runCmd)
286
287
- e.runCmd.SetOutput(logutils.StdOut) // use custom output to properly color it in Windows terminals
+ e.runCmd.SetOut(logutils.StdOut) // use custom output to properly color it in Windows terminals
288
+ e.runCmd.SetErr(logutils.StdErr)
289
290
e.initRunConfiguration(e.runCmd)
291
0 commit comments