From 90ebd7c90993b33d1210187a6a2871d9d4b34547 Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Fri, 30 Aug 2019 10:32:29 +0200 Subject: Makefile: use go proxy Use GOPROXY=https://proxy.golang.org to speed up fetching dependencies. Setting it makes `make vendor` three times faster in my local env. For details please refer to https://proxy.golang.org/. Signed-off-by: Valentin Rothberg --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 1a3d03f8a..4f51adb67 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ export GO111MODULE=off +export GOPROXY=https://proxy.golang.org GO ?= go DESTDIR ?= -- cgit v1.2.3-54-g00ecf