From 531368da8606b47e62f29717095007ea28159f79 Mon Sep 17 00:00:00 2001 From: Xavier Michelon Date: Wed, 30 Oct 2024 12:36:21 +0100 Subject: [PATCH] feat(BRIDGE-252): restored the -h shortcut shortcut for the CLI --help switch. --- internal/app/app.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/app/app.go b/internal/app/app.go index be0ce6fe..b26d6cc2 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -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, }