diff options
author | umohnani8 <umohnani@redhat.com> | 2018-02-19 15:39:56 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-20 15:16:28 +0000 |
commit | 8f8fd1d900303f2f2fe562357c96d0855ff77a5c (patch) | |
tree | 72fed4d372361b4ed2155178e1ba530d0f0a4ea4 /cmd/podman/push.go | |
parent | 8eb5cf74892611f26c0c42c45312cb84e04882a2 (diff) | |
download | podman-8f8fd1d900303f2f2fe562357c96d0855ff77a5c.tar.gz podman-8f8fd1d900303f2f2fe562357c96d0855ff77a5c.tar.bz2 podman-8f8fd1d900303f2f2fe562357c96d0855ff77a5c.zip |
Fix podman save when redirecting output
podman save would write the progress bar to the image tar file
when the output was redirected with >.
Fixed the writer to write to stderr for all commands using writer
Signed-off-by: umohnani8 <umohnani@redhat.com>
Closes: #362
Approved by: mheon
Diffstat (limited to 'cmd/podman/push.go')
-rw-r--r-- | cmd/podman/push.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/push.go b/cmd/podman/push.go index 2f0d73ffa..e16b91611 100644 --- a/cmd/podman/push.go +++ b/cmd/podman/push.go @@ -118,7 +118,7 @@ func pushCmd(c *cli.Context) error { var writer io.Writer if !c.Bool("quiet") { - writer = os.Stdout + writer = os.Stderr } var manifestType string |