Merge "Write cli errors to stderr"

This commit is contained in:
Zuul 2020-05-11 20:07:10 +00:00 committed by Gerrit Code Review
commit 320a0918f0
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ func main() {
}
if err := rootCmd.Execute(); err != nil {
fmt.Fprintln(os.Stdout, err)
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}