summaryrefslogtreecommitdiff
path: root/cmd/podman/images/exists.go
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2020-04-22 09:51:00 -0700
committerJhon Honce <jhonce@redhat.com>2020-04-22 09:53:05 -0700
commitd0caf90940943a7fbf80b27ec59adcdd501fa49e (patch)
tree96bc6a9b3fdb6ab841ad6ba7cab6ff3e63c6149c /cmd/podman/images/exists.go
parent7f1d00108e441b012785fa9d6e75317bad7ce239 (diff)
downloadpodman-d0caf90940943a7fbf80b27ec59adcdd501fa49e.tar.gz
podman-d0caf90940943a7fbf80b27ec59adcdd501fa49e.tar.bz2
podman-d0caf90940943a7fbf80b27ec59adcdd501fa49e.zip
V2 Restore exists E2E tests
* Fix setting exit code in */exists.go Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'cmd/podman/images/exists.go')
-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
}