From ee30df3efd0515696f2417a2dc680520c510fc82 Mon Sep 17 00:00:00 2001 From: Radek Simko Date: Sat, 10 Jun 2017 11:49:57 +0100 Subject: [PATCH] command/providers: Enable processing of meta-parameters This will enable proper colouring of the output, like for other commands. --- command/providers.go | 1 + 1 file changed, 1 insertion(+) diff --git a/command/providers.go b/command/providers.go index aeae44b15..2a755f126 100644 --- a/command/providers.go +++ b/command/providers.go @@ -24,6 +24,7 @@ func (c *ProvidersCommand) Synopsis() string { } func (c *ProvidersCommand) Run(args []string) int { + c.Meta.process(args, false) cmdFlags := c.Meta.flagSet("providers") cmdFlags.Usage = func() { c.Ui.Error(c.Help()) }