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/pull.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/pull.go')
-rw-r--r-- | cmd/podman/pull.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/pull.go b/cmd/podman/pull.go index 886f82dd5..5dc9ef2d4 100644 --- a/cmd/podman/pull.go +++ b/cmd/podman/pull.go @@ -5,6 +5,7 @@ import ( "os" "fmt" + "github.com/containers/image/types" "github.com/pkg/errors" "github.com/projectatomic/libpod/libpod" @@ -90,7 +91,7 @@ func pullCmd(c *cli.Context) error { var writer io.Writer if !c.Bool("quiet") { - writer = os.Stdout + writer = os.Stderr } options := libpod.CopyOptions{ |