From f1daefaf36ffb014241db1b5092dd2e6f115a1ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Sch=C3=BCnemann?= Date: Wed, 30 Jul 2025 13:11:20 +0200 Subject: [PATCH] fix: cli use, short and long strings --- cmd/root.go | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index f640773..07f2de2 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -8,14 +8,10 @@ import ( // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ - Use: "bootstrapper", - Short: "A brief description of your application", - Long: `A longer description that spans multiple lines and likely contains -examples and usage of using your application. For example: - -Cobra is a CLI library for Go that empowers applications. -This application is a tool to generate the needed files -to quickly create a Cobra application.`, + Use: "openmcp-bootstrapper", + Short: "The openMCP bootstrapper CLI", + Long: `The openMCP bootstrapper CLI is a command-line interface +for bootstrapping and updating openMCP landscapes.`, // Uncomment the following line if your bare application // has an action associated with it: // Run: func(cmd *cobra.Command, args []string) { }, @@ -39,5 +35,5 @@ func init() { // Cobra also supports local flags, which will only run // when this action is called directly. - rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") + // rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") }