From 9d230dd13248453ac558934ff591457daaca13fa Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Thu, 27 Jun 2019 16:33:01 +0200 Subject: [PATCH] Makefile: set GO111MODULE=off Turn of go modules to avoid breaking build environments to accidentally try pulling the dependencies instead of using the ./vendor directory. Signed-off-by: Valentin Rothberg --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 162e65b3..886ea2da 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ .PHONY: all binary build-container docs docs-in-container build-local clean install install-binary install-completions shell test-integration .install.vndr vendor export GO15VENDOREXPERIMENT=1 +export GO111MODULE=off ifeq ($(shell uname),Darwin) PREFIX ?= ${DESTDIR}/usr/local