From b76c6daf858e43f35fa802cec13583b11dee05bb Mon Sep 17 00:00:00 2001 From: Marcus Efraimsson Date: Wed, 9 Oct 2019 11:01:42 +0200 Subject: [PATCH] enforce GO111MODULE=on when running make run (#19724) Fixes so make run works on older Go versions than 1.13. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7056e4c2184..3e6672b194f 100644 --- a/Makefile +++ b/Makefile @@ -118,7 +118,7 @@ shellcheck: $(SH_FILES) $(SH_FILES) -e SC1071 -e SC2162 run: scripts/go/bin/bra - @scripts/go/bin/bra run + @GO111MODULE=on scripts/go/bin/bra run # create docker-compose file with provided sources and start them # example: make devenv sources=postgres,openldap