From 9697b0d91fa9139fff8c4ac30cb04a694d28f8fd Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Thu, 27 Jun 2019 16:24:16 +0200 Subject: 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 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 108a37146..d1e52b1a1 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +export GO111MODULE=off + GO ?= go DESTDIR ?= EPOCH_TEST_COMMIT ?= 5b7086abda91f4301af3bfb642d416a22349c276 -- cgit v1.2.3-54-g00ecf