summaryrefslogtreecommitdiff
path: root/cmd/podmanV2
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-03-20 13:00:37 -0500
committerBrent Baude <bbaude@redhat.com>2020-03-20 13:01:24 -0500
commitbaf3a9b3a72e4d98ad30ee56a7dd81812fb1fd21 (patch)
tree45e486ec8c793fda0f05d39bfaf9ce1d9016b02e /cmd/podmanV2
parent87293028e61d0c88c258ed9f4a82c4be7f0bc896 (diff)
downloadpodman-baf3a9b3a72e4d98ad30ee56a7dd81812fb1fd21.tar.gz
podman-baf3a9b3a72e4d98ad30ee56a7dd81812fb1fd21.tar.bz2
podman-baf3a9b3a72e4d98ad30ee56a7dd81812fb1fd21.zip
use boolreport for containerexists response
in the case of exists, use a boolreport structure so that responses can be consistent pointer and error Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podmanV2')
-rw-r--r--cmd/podmanV2/containers/exists.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podmanV2/containers/exists.go b/cmd/podmanV2/containers/exists.go
index 4f9e6c44a..93989b54a 100644
--- a/cmd/podmanV2/containers/exists.go
+++ b/cmd/podmanV2/containers/exists.go
@@ -29,11 +29,11 @@ func init() {
}
func exists(cmd *cobra.Command, args []string) error {
- exists, err := registry.ContainerEngine().ContainerExists(context.Background(), args[0])
+ response, err := registry.ContainerEngine().ContainerExists(context.Background(), args[0])
if err != nil {
return err
}
- if !exists {
+ if !response.Value {
os.Exit(1)
}
return nil