We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37ae1db commit e06ba01Copy full SHA for e06ba01
cmd/version.go
@@ -18,11 +18,10 @@ var versionCmd = &cobra.Command{
18
19
func init() {
20
rootCmd.AddCommand(versionCmd)
21
- versionCmd.PersistentFlags().BoolVarP(
+ versionCmd.PersistentFlags().BoolVar(
22
&verbose,
23
"verbose",
24
- "V", // a lowercase v was causing a panic: unable to redefine 'v' shorthand in "version" flagset: it's already used for "verbose" flag
25
false,
26
- "If enabled, displays the additional information about this built.",
+ "If enabled, displays the additional information about this build.",
27
)
28
}
0 commit comments