From c0432eb0e8a2c777a5c6d8caa01475c06553594c Mon Sep 17 00:00:00 2001 From: umohnani8 Date: Mon, 18 Dec 2017 21:43:05 -0500 Subject: run duplicated print statements podman run would print "Trying to pull..." twice when pulling an image to create a container. Signed-off-by: umohnani8 Closes: #154 Approved by: rhatdan --- cmd/podman/run.go | 1 - 1 file changed, 1 deletion(-) (limited to 'cmd') 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() } -- cgit v1.2.3-54-g00ecf