Skip to content

Commit a7d4c73

Browse files
authored
fix: cli use, short and long strings (#6)
1 parent 18d5702 commit a7d4c73

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

cmd/root.go

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,10 @@ import (
88

99
// rootCmd represents the base command when called without any subcommands
1010
var rootCmd = &cobra.Command{
11-
Use: "bootstrapper",
12-
Short: "A brief description of your application",
13-
Long: `A longer description that spans multiple lines and likely contains
14-
examples and usage of using your application. For example:
15-
16-
Cobra is a CLI library for Go that empowers applications.
17-
This application is a tool to generate the needed files
18-
to quickly create a Cobra application.`,
11+
Use: "openmcp-bootstrapper",
12+
Short: "The openMCP bootstrapper CLI",
13+
Long: `The openMCP bootstrapper CLI is a command-line interface
14+
for bootstrapping and updating openMCP landscapes.`,
1915
// Uncomment the following line if your bare application
2016
// has an action associated with it:
2117
// Run: func(cmd *cobra.Command, args []string) { },
@@ -39,5 +35,5 @@ func init() {
3935

4036
// Cobra also supports local flags, which will only run
4137
// when this action is called directly.
42-
rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
38+
// rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
4339
}

0 commit comments

Comments
 (0)