From be46695d82bc700e4f21a25e0d6d269c9025e2aa Mon Sep 17 00:00:00 2001 From: Roxie Gibson Date: Sat, 17 Jul 2021 05:11:48 +0100 Subject: [PATCH] feat: added flags to base command they already exist just attatching them to the command --- cli/cli.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/cli/cli.go b/cli/cli.go index dece786e3..4f3741b19 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -30,6 +30,16 @@ func RunApp(version, commit string) { }, }, }, + Flags: []cli.Flag{ + EnvFlag, + StackFlag, + SkipCheckFlag, + SkipUpdateFlag, + VerboseFlag, + BranchFlag, + NoPromptFlag, + DebugFlag, + }, } err := app.Run(os.Args)