From 1e52d30f4ce904b678072708c73b132957caf708 Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Tue, 13 May 2025 23:31:56 +0300 Subject: [PATCH] fix list command --- list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/list.go b/list.go index afad318..3cad799 100644 --- a/list.go +++ b/list.go @@ -186,7 +186,7 @@ func ListCmd() *cli.Command { if err != nil { return cliutils.FormatCliExit(gotext.Get("Error parsing format template"), err) } - err = tmpl.Execute(os.Stdout, pkg) + err = tmpl.Execute(os.Stdout, pkgInfo) if err != nil { return cliutils.FormatCliExit(gotext.Get("Error executing template"), err) }