Keep errors/warning out of stdout for ease of automation

This commit is contained in:
Maxime Bury 2016-05-24 14:59:51 +02:00
parent a764238d7d
commit 56ec9b3354
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ func init() {
OutputPrefix: OutputPrefix, OutputPrefix: OutputPrefix,
InfoPrefix: OutputPrefix, InfoPrefix: OutputPrefix,
ErrorPrefix: ErrorPrefix, ErrorPrefix: ErrorPrefix,
Ui: &cli.BasicUi{Writer: os.Stdout}, Ui: &cli.BasicUi{Writer: os.Stdout, ErrorWriter: os.Stderr},
} }
meta := command.Meta{ meta := command.Meta{