From c4c8f944f3d5cdcae3081589c4c133b50dff6610 Mon Sep 17 00:00:00 2001 From: shreyas-goenka <88374338+shreyas-goenka@users.noreply.github.com> Date: Thu, 9 Mar 2023 15:05:02 +0100 Subject: [PATCH] Remove redundant terraform initialize mutator (#238) Tested manually that bricks bundle run runs a pipeline. phases.Initialize already has terraform.Initialize mutator --- cmd/bundle/run.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/bundle/run.go b/cmd/bundle/run.go index cc358c7c..c45353cf 100644 --- a/cmd/bundle/run.go +++ b/cmd/bundle/run.go @@ -21,7 +21,6 @@ var runCmd = &cobra.Command{ b := bundle.Get(cmd.Context()) err := bundle.Apply(cmd.Context(), b, []bundle.Mutator{ phases.Initialize(), - terraform.Initialize(), terraform.Load(), }) if err != nil {