From 4fff98fd7f2a71a94f5a6027130da7c3af4f9532 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Tue, 10 Oct 2017 16:02:50 +0100 Subject: [PATCH] Remove last mention of GO15VENDOREXPERIMENT Since #2750[1] prometheus depends on go 1.8. go 1.7 enabled vendoring by default and removes the corresponding variable[2], simplifying things a bit. [1] https://github.com/prometheus/prometheus/pull/2750 [2] https://blog.golang.org/go1.7 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 570ab33cc..becebdec5 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -GO ?= GO15VENDOREXPERIMENT=1 go +GO ?= go GOFMT ?= $(GO)fmt FIRST_GOPATH := $(firstword $(subst :, ,$(shell $(GO) env GOPATH))) PROMU := $(FIRST_GOPATH)/bin/promu