From 85b7027048a37eea5d14c57152ec8716f919fec0 Mon Sep 17 00:00:00 2001
From: James Bardin <j.bardin@gmail.com>
Date: Fri, 27 Nov 2020 09:36:10 -0500
Subject: [PATCH] File no longer exists to be formatted

Were no longer generating the internal plugins list which needs to be
formatted.
---
 Makefile | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/Makefile b/Makefile
index 0324eca9c2..e8d7017701 100644
--- a/Makefile
+++ b/Makefile
@@ -6,12 +6,6 @@ VERSION?="0.3.44"
 # "make protobuf".
 generate:
 	go generate ./...
-	# go fmt doesn't support -mod=vendor but it still wants to populate the
-	# module cache with everything in go.mod even though formatting requires
-	# no dependencies, and so we're disabling modules mode for this right
-	# now until the "go fmt" behavior is rationalized to either support the
-	# -mod= argument or _not_ try to install things.
-	GO111MODULE=off go fmt command/internal_plugin_list.go > /dev/null
 
 # We separate the protobuf generation because most development tasks on
 # Terraform do not involve changing protobuf files and protoc is not a
-- 
GitLab