From 584844eada226f062d46da53e9ba6470ecd58eaa Mon Sep 17 00:00:00 2001 From: Peter Hoffmann Date: Thu, 1 Nov 2018 01:36:41 +0100 Subject: [PATCH] fix: Accept web-command cli flags if web-command is commited (#5200) * fix: Accept web-command cli flags if web-command is commited * Added flags of default cmd CmdWeb to app-wide flags * If command *is* specified app-wide flags are ignored Resolves: #5065 Signed-off-by: Berengar W. Lehr * Removed style breaking newline * broken windows need to be fixed * provides requested change --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index a331de473..a0a52c3ae 100644 --- a/main.go +++ b/main.go @@ -49,7 +49,7 @@ arguments - which can alternatively be run by running the subcommand web.` cmd.CmdGenerate, cmd.CmdMigrate, } - app.Flags = append(app.Flags, []cli.Flag{}...) + app.Flags = append(app.Flags, cmd.CmdWeb.Flags...) app.Action = cmd.CmdWeb.Action err := app.Run(os.Args) if err != nil {