Skip to content
Snippets Groups Projects
Unverified Commit 5aa9ae51 authored by Stefan Prodan's avatar Stefan Prodan Committed by GitHub
Browse files

Merge pull request #1898 from superbrothers/stdout

Fix "get" commands to use stdout instead of stderr
parents e6bbed16 dd81ed89
No related branches found
No related tags found
No related merge requests found
......@@ -177,7 +177,7 @@ func (get getCommand) run(cmd *cobra.Command, args []string) error {
return err
}
utils.PrintTable(cmd.OutOrStderr(), header, rows)
utils.PrintTable(cmd.OutOrStdout(), header, rows)
if getAll {
fmt.Println()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment