Merge pull request #6848 from Originate/mb-use-stderr-for-warnings
core: Keep errors/warning out of stdout for ease of automation
This commit is contained in:
commit
14f64113b8
|
@ -26,7 +26,7 @@ func init() {
|
|||
OutputPrefix: OutputPrefix,
|
||||
InfoPrefix: OutputPrefix,
|
||||
ErrorPrefix: ErrorPrefix,
|
||||
Ui: &cli.BasicUi{Writer: os.Stdout},
|
||||
Ui: &cli.BasicUi{Writer: os.Stdout, ErrorWriter: os.Stderr},
|
||||
}
|
||||
|
||||
meta := command.Meta{
|
||||
|
|
Loading…
Reference in New Issue