From 304bf53c28301a8dfd126f2304e02df5472e56b1 Mon Sep 17 00:00:00 2001 From: baude Date: Mon, 26 Mar 2018 18:28:20 -0500 Subject: cmd/podman/run.go: Error nicely when no image found When no image is found, display a useful error message. Also, in imageToRef protect against a nil image being passed. Resolves: #553 Signed-off-by: baude Closes: #555 Approved by: mheon --- cmd/podman/run.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cmd') diff --git a/cmd/podman/run.go b/cmd/podman/run.go index 523b973fb..21320f57c 100644 --- a/cmd/podman/run.go +++ b/cmd/podman/run.go @@ -56,6 +56,9 @@ func runCmd(c *cli.Context) error { rtc := runtime.GetConfig() newImage, err := runtime.ImageRuntime().New(c.Args()[0], rtc.SignaturePolicyPath, "", os.Stderr, nil, image.SigningOptions{}) + if err != nil { + return errors.Wrapf(err, "unable to find image") + } data, err := newImage.Inspect() if err != nil { -- cgit v1.2.3-54-g00ecf