diff options
Diffstat (limited to 'cmd/podmanV2/root.go')
-rw-r--r-- | cmd/podmanV2/root.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cmd/podmanV2/root.go b/cmd/podmanV2/root.go index 2becd126d..68e8b4531 100644 --- a/cmd/podmanV2/root.go +++ b/cmd/podmanV2/root.go @@ -26,12 +26,13 @@ func init() { var dummyVersion bool // TODO had to disable shorthand -v for version due to -v rm with volume rootCmd.PersistentFlags().BoolVar(&dummyVersion, "version", false, "Version of Podman") - rootCmd.PersistentFlags().StringVarP(®istry.EngineOpts.Uri, "remote", "r", "", "URL to access Podman service") - rootCmd.PersistentFlags().StringSliceVar(®istry.EngineOpts.Identities, "identity", []string{}, "path to SSH identity file") + rootCmd.PersistentFlags().StringVarP(®istry.EngineOptions.Uri, "remote", "r", "", "URL to access Podman service") + rootCmd.PersistentFlags().StringSliceVar(®istry.EngineOptions.Identities, "identity", []string{}, "path to SSH identity file") } func Execute() { - if err := rootCmd.Execute(); err != nil { + o := registry.NewOptions(rootCmd.Context(), ®istry.EngineOptions) + if err := rootCmd.ExecuteContext(o); err != nil { fmt.Fprintln(os.Stderr, "Error:", err.Error()) } else if registry.GetExitCode() == define.ExecErrorCodeGeneric { // The exitCode modified from define.ExecErrorCodeGeneric, |