From 03688ce91ff2f7636de60622ddebe1cb3017b504 Mon Sep 17 00:00:00 2001 From: Adam Connelly Date: Tue, 31 Oct 2023 17:27:05 +0000 Subject: [PATCH] fix: typo in setvar error message --- internal/cmd/stack/environment.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/stack/environment.go b/internal/cmd/stack/environment.go index 8244fa2..2c80f82 100644 --- a/internal/cmd/stack/environment.go +++ b/internal/cmd/stack/environment.go @@ -74,7 +74,7 @@ type listEnvCommand struct{} func setVar(cliCtx *cli.Context) error { if nArgs := cliCtx.NArg(); nArgs != 2 { - return fmt.Errorf("expected two arguments to `environment setenv` but got %d", nArgs) + return fmt.Errorf("expected two arguments to `environment setvar` but got %d", nArgs) } envName := cliCtx.Args().Get(0)