Skip to content

Commit

Permalink
fix: typo in setvar error message
Browse files Browse the repository at this point in the history
  • Loading branch information
adamconnelly committed Oct 31, 2023
1 parent e3758ac commit 03688ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cmd/stack/environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 03688ce

Please sign in to comment.