Merge pull request #1898 from superbrothers/stdout

Fix "get" commands to use stdout instead of stderr
pull/1881/head
Stefan Prodan 4 years ago committed by GitHub
commit 5aa9ae511f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -177,7 +177,7 @@ func (get getCommand) run(cmd *cobra.Command, args []string) error {
return err return err
} }
utils.PrintTable(cmd.OutOrStderr(), header, rows) utils.PrintTable(cmd.OutOrStdout(), header, rows)
if getAll { if getAll {
fmt.Println() fmt.Println()

Loading…
Cancel
Save