From 66dc2fd2591d9464c10ffc5884815baf60e659be Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Wed, 19 Jan 2022 10:21:19 -0800 Subject: [PATCH] Remove loading status during startup --- internal/cli/main.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/internal/cli/main.go b/internal/cli/main.go index f21d39497..84e180f17 100644 --- a/internal/cli/main.go +++ b/internal/cli/main.go @@ -142,18 +142,11 @@ func Commands( return nil, nil, err } - s := baseCommand.client.UI().Status() - s.Update("Loading Vagrant...") - result, err := baseCommand.client.Commands(ctx, nil, baseCommand.Modifier()) if err != nil { - s.Step(terminal.StatusError, "Failed to load Vagrant!") return nil, nil, err } - s.Step(terminal.StatusOK, "Vagrant loaded!") - s.Close() - // Set plain mode if set if os.Getenv(EnvPlain) != "" { baseCommand.globalOptions = append(baseCommand.globalOptions,