diff options
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/run.go | 3 |
1 files changed, 3 insertions, 0 deletions
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 { |