From b15c129a66d03e012164ca3a4309ee6bb1eabb75 Mon Sep 17 00:00:00 2001 From: Brian Rhea Date: Tue, 2 Apr 2024 16:43:53 -0600 Subject: [PATCH] Remove reference to KOTS in app_create and app_ls command descriptions --- cli/cmd/app_create.go | 4 ++-- cli/cmd/app_ls.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/cmd/app_create.go b/cli/cmd/app_create.go index 5afd8a6bb..a41aad9bc 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 416670707..396d00ff5 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, }