From b86e9c3e8b137db4713d3a4bc34fff21731346fe Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Thu, 5 Aug 2021 11:28:54 -0700 Subject: [PATCH] Temporarily disable local check in client UI setup --- internal/cli/ui.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/internal/cli/ui.go b/internal/cli/ui.go index 18c634f15..046229bf4 100644 --- a/internal/cli/ui.go +++ b/internal/cli/ui.go @@ -28,9 +28,10 @@ func (c *UICommand) Run(args []string) int { return 1 } - if c.basis.Local() { - c.basis.UI().Output("Vagrant must be configured in server mode to access the UI", terminal.WithWarningStyle()) - } + // TODO(spox): comment this out until local configuration is updated + // if c.client.Local() { + // c.client.UI().Output("Vagrant must be configured in server mode to access the UI", terminal.WithWarningStyle()) + // } // Get our API client client := c.basis.Client()