From 077032840d1fe8f4eb47fd6d155d8e770a008e01 Mon Sep 17 00:00:00 2001 From: Gurarpit Singh Date: Sun, 10 Nov 2019 00:32:08 +0000 Subject: [PATCH] Update plugin.go --- plugin.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugin.go b/plugin.go index fb57da2..8cea9bb 100644 --- a/plugin.go +++ b/plugin.go @@ -325,12 +325,9 @@ func tfPlan(config Config, destroy bool) *exec.Cmd { } func tfValidate() *exec.Cmd { - args := []string{ - "validate", - } return exec.Command( "terraform", - args..., + "validate", ) }