From 77a2af8817284d134ea1f30f0b06291a5b05c5a0 Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Mon, 23 Mar 2020 10:27:32 -0700 Subject: Combine GlobalFlags and EngineFlags into EngineOptions * EngineOptions obtained in command via `opt, err := registry.Options(cmd)` Signed-off-by: Jhon Honce --- cmd/podmanV2/images/list.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd/podmanV2/images/list.go') diff --git a/cmd/podmanV2/images/list.go b/cmd/podmanV2/images/list.go index cfdfaaed2..0441f8fd8 100644 --- a/cmd/podmanV2/images/list.go +++ b/cmd/podmanV2/images/list.go @@ -29,5 +29,6 @@ func init() { } func images(cmd *cobra.Command, args []string) error { + _, _ = registry.Options(cmd) return nil } -- cgit v1.2.3-54-g00ecf