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 b79e0c5 commit 82aeee3Copy full SHA for 82aeee3
pkg/commands/run.go
@@ -287,7 +287,8 @@ func (e *Executor) initRun() {
287
}
288
e.rootCmd.AddCommand(e.runCmd)
289
290
- 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
291
+ e.runCmd.SetErr(logutils.StdErr)
292
293
e.initRunConfiguration(e.runCmd)
294
0 commit comments