From 08da045f43f4b26a859a2e6f26627c3ff368871e Mon Sep 17 00:00:00 2001 From: Sean Johnson Date: Wed, 30 Nov 2016 18:51:44 -0600 Subject: [PATCH] Fix `environment` command type. --- fission/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fission/main.go b/fission/main.go index 2c14a5ab..adb7606c 100644 --- a/fission/main.go +++ b/fission/main.go @@ -74,7 +74,7 @@ func main() { app.Commands = []cli.Command{ {Name: "function", Aliases: []string{"fn"}, Usage: "Create, update and manage functions", Subcommands: fnSubcommands}, {Name: "httptrigger", Aliases: []string{"ht", "route"}, Usage: "Manage HTTP triggers (routes) for functions", Subcommands: htSubcommands}, - {Name: "environemnt", Aliases: []string{"env"}, Usage: "Manage environments", Subcommands: envSubcommands}, + {Name: "environment", Aliases: []string{"env"}, Usage: "Manage environments", Subcommands: envSubcommands}, // Misc commands {