summaryrefslogtreecommitdiff
path: root/cmd/podman/pods/exists.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/pods/exists.go')
-rw-r--r--cmd/podman/pods/exists.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/podman/pods/exists.go b/cmd/podman/pods/exists.go
index ad0e28b90..5a94bf150 100644
--- a/cmd/podman/pods/exists.go
+++ b/cmd/podman/pods/exists.go
@@ -2,7 +2,6 @@ package pods
import (
"context"
- "os"
"github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
@@ -37,7 +36,7 @@ func exists(cmd *cobra.Command, args []string) error {
return err
}
if !response.Value {
- os.Exit(1)
+ registry.SetExitCode(1)
}
return nil
}