Skip to content

Commit

Permalink
Move configs to the top of the pre-run method (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket authored May 12, 2021
1 parent 318326a commit 5aa2dc4
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions internal/cli/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ func Execute() {
Short: "Supercharge your development workflow.",
Long: "Supercharge your development workflow.\n" + getLogin(cli),
Version: buildinfo.GetVersionWithCommit(),

PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
ansi.DisableColors = cli.noColor
prepareInteractivity(cmd)

// If the user is trying to login, no need to go
// through setup.
if cmd.Use == "login" && cmd.Parent().Use == "auth0" {
Expand Down Expand Up @@ -60,10 +62,6 @@ func Execute() {
return nil
}

ansi.DisableColors = cli.noColor

prepareInteractivity(cmd)

// Initialize everything once. Later callers can then
// freely assume that config is fully primed and ready
// to go.
Expand Down

0 comments on commit 5aa2dc4

Please sign in to comment.