From 1a3ec7a107c7bf0e26c061ce8fa8c876c4c13547 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Tue, 9 Jul 2024 17:12:36 +0200 Subject: [PATCH] fix: pass recipe name for listing cmds --- cli/app/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/app/cmd.go b/cli/app/cmd.go index c70fbf56..9a09d6ad 100644 --- a/cli/app/cmd.go +++ b/cli/app/cmd.go @@ -209,7 +209,7 @@ var appCmdListCommand = cli.Command{ Before: internal.SubCommandBefore, Action: func(c *cli.Context) error { app := internal.ValidateApp(c) - r := recipe.Get(app.Name) + r := recipe.Get(app.Recipe.Name) if err := r.EnsureExists(); err != nil { log.Fatal(err)