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") }