Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move configs to the top of the pre-run method #283

Merged
merged 4 commits into from
May 12, 2021
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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