feat(BRIDGE-252): restored the -h shortcut shortcut for the CLI --help switch.

This commit is contained in:
Xavier Michelon
2024-10-30 12:36:21 +01:00
parent 0c21925939
commit 531368da86

View File

@ -205,6 +205,7 @@ func New() *cli.App {
// We override the default help value because we want "Show" to be capitalized
cli.HelpFlag = &cli.BoolFlag{
Name: "help",
Aliases: []string{"h"},
Usage: "Show help",
DisableDefaultText: true,
}