From 10bb8b9d688f407d6d3a3169e52d8dd1f47c662f Mon Sep 17 00:00:00 2001 From: "Joel D. Elkins" Date: Fri, 29 Jul 2022 22:13:01 -0500 Subject: [PATCH] show does not need connection --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 714326a..85f9f93 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -49,7 +49,7 @@ execute the necessary podman commands.`, contMask = []string{"disabled"} } - requireConn := []string{"create", "pull", "recreate", "restart", "rm", "show", "start", "stop", "update"} + requireConn := []string{"create", "pull", "recreate", "restart", "rm", "start", "stop", "update"} if slices.Contains(requireConn, cmd.Name()) { // connect to podman ConnectMust()