From 1766b609a57bc15fa7d2759e5e3ef6812c82f9ae Mon Sep 17 00:00:00 2001 From: Bryan Boreham Date: Fri, 27 Jul 2018 08:11:27 +0000 Subject: [PATCH] Set $SRC_PATH as required by the build container This was missed in the earlier change to use the image from build-tools. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index f65d4286..1407b688 100644 --- a/Makefile +++ b/Makefile @@ -45,6 +45,7 @@ lint test shell: $(SUDO) docker run $(RM) -ti \ -v $(shell pwd)/.pkg:/go/pkg \ -v $(shell pwd):/go/src/github.com/weaveworks/common \ + -e SRC_PATH=/go/src/github.com/weaveworks/common \ $(BUILD_IMAGE) $@ else