diff --git a/cli/cmd/app_create.go b/cli/cmd/app_create.go index 5afd8a6b..a41aad9b 100644 --- a/cli/cmd/app_create.go +++ b/cli/cmd/app_create.go @@ -11,8 +11,8 @@ import ( func (r *runners) InitAppCreate(parent *cobra.Command) *cobra.Command { cmd := &cobra.Command{ Use: "create NAME", - Short: "create kots apps", - Long: `create kots apps`, + Short: "create apps", + Long: `create apps`, RunE: r.createApp, SilenceUsage: true, } diff --git a/cli/cmd/app_ls.go b/cli/cmd/app_ls.go index 41667070..396d00ff 100644 --- a/cli/cmd/app_ls.go +++ b/cli/cmd/app_ls.go @@ -12,8 +12,8 @@ import ( func (r *runners) InitAppList(parent *cobra.Command) *cobra.Command { cmd := &cobra.Command{ Use: "ls [NAME]", - Short: "list kots apps", - Long: `list kots apps, or a single app by name`, + Short: "list apps", + Long: `list apps, or a single app by name`, RunE: r.listApps, SilenceUsage: true, }