Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( GaugeCmd = &cobra.Command{ Use: "gauge <command> [flags] [args]", Example: ` gauge run specs/ gauge run --parallel specs/`, Run: func(cmd *cobra.Command, args []string) { if gaugeVersion { printVersion() return } if len(args) < 1 { cmd.Help() } }, DisableAutoGenTag: true, PersistentPreRun: func(cmd *cobra.Command, args []string) { skel.CreateSkelFilesIfRequired() track.Init() config.SetProjectRoot(args) if e := env.LoadEnv(environment); e != nil { logger.Fatalf(true, e.Error()) } initLogger(cmd.Name()) setGlobalFlags() initPackageFlags() }, PersistentPostRun: notifyTelemetryIfNeeded, } )
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.