aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/images
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-22 20:22:44 +0200
committerGitHub <noreply@github.com>2020-04-22 20:22:44 +0200
commit366fc0520b1503556a177aa2fd29f529f8874544 (patch)
tree10841602b1f1ed8cd2cc8afaede327692c946e1c /cmd/podman/images
parent703fd505538fdae2165dad47c7a6886ac3ed891e (diff)
parentd0caf90940943a7fbf80b27ec59adcdd501fa49e (diff)
downloadpodman-366fc0520b1503556a177aa2fd29f529f8874544.tar.gz
podman-366fc0520b1503556a177aa2fd29f529f8874544.tar.bz2
podman-366fc0520b1503556a177aa2fd29f529f8874544.zip
Merge pull request #5941 from jwhonce/jira/792
V2 Restore exists E2E tests
Diffstat (limited to 'cmd/podman/images')
-rw-r--r--cmd/podman/images/exists.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd/podman/images/exists.go b/cmd/podman/images/exists.go
index 0bb288b96..6464e6cd8 100644
--- a/cmd/podman/images/exists.go
+++ b/cmd/podman/images/exists.go
@@ -1,8 +1,6 @@
package images
import (
- "os"
-
"github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
@@ -34,7 +32,7 @@ func exists(cmd *cobra.Command, args []string) error {
return err
}
if !found.Value {
- os.Exit(1)
+ registry.SetExitCode(1)
}
return nil
}