diff options
author | umohnani8 <umohnani@redhat.com> | 2017-12-18 21:43:05 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-12-19 13:22:30 +0000 |
commit | c0432eb0e8a2c777a5c6d8caa01475c06553594c (patch) | |
tree | d3f1404e39ce1910af6d30520c756f12092f4520 /cmd/podman | |
parent | 0a2f426ceb41475cb0832dafc044b9863b2eb39d (diff) | |
download | podman-c0432eb0e8a2c777a5c6d8caa01475c06553594c.tar.gz podman-c0432eb0e8a2c777a5c6d8caa01475c06553594c.tar.bz2 podman-c0432eb0e8a2c777a5c6d8caa01475c06553594c.zip |
run duplicated print statements
podman run would print "Trying to pull..." twice
when pulling an image to create a container.
Signed-off-by: umohnani8 <umohnani@redhat.com>
Closes: #154
Approved by: rhatdan
Diffstat (limited to 'cmd/podman')
-rw-r--r-- | cmd/podman/run.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/podman/run.go b/cmd/podman/run.go index 6142983ad..6ba501c76 100644 --- a/cmd/podman/run.go +++ b/cmd/podman/run.go @@ -44,7 +44,6 @@ func runCmd(c *cli.Context) error { if createImage.LocalName == "" { // The image wasnt found by the user input'd name or its fqname // Pull the image - fmt.Printf("Trying to pull %s...", createImage.PullName) createImage.Pull() } |