From 726c8334ab69c10395ff2778b19cd6af4286fbd4 Mon Sep 17 00:00:00 2001 From: cabdallah-nv Date: Tue, 5 Nov 2024 17:22:11 -0800 Subject: [PATCH] cmd.go push --- pkg/cmd/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/cmd.go b/pkg/cmd/cmd.go index 71b10754..99c65767 100644 --- a/pkg/cmd/cmd.go +++ b/pkg/cmd/cmd.go @@ -229,7 +229,7 @@ func NewBrevCommand() *cobra.Command { //nolint:funlen,gocognit,gocyclo // defin return cmds } -func createCmdTree(cmd *cobra.Command, t *terminal.Terminal, loginCmdStore *store.AuthHTTPStore, noLoginCmdStorN *store.AuthHTTPStore, loginAuth *auth.LoginAuth) { //nolint:funlen // define brev command +func createCmdTree(cmd *cobra.Command, t *terminal.Terminal, loginCmdStore *store.AuthHTTPStore, noLoginCmdStore *store.AuthHTTPStore, loginAuth *auth.LoginAuth) { //nolint:funlen // define brev command cmd.AddCommand(set.NewCmdSet(t, loginCmdStore, noLoginCmdStore)) cmd.AddCommand(ls.NewCmdLs(t, loginCmdStore, noLoginCmdStore)) cmd.AddCommand(org.NewCmdOrg(t, loginCmdStore, noLoginCmdStore))