diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2019-08-30 10:32:29 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2019-08-30 10:32:29 +0200 |
commit | 90ebd7c90993b33d1210187a6a2871d9d4b34547 (patch) | |
tree | 019703e8cf0fe9c96e0bcff699013a7db7e1277c | |
parent | d110998744e816895b0a9d9bb90a02cd5d12df7b (diff) | |
download | podman-90ebd7c90993b33d1210187a6a2871d9d4b34547.tar.gz podman-90ebd7c90993b33d1210187a6a2871d9d4b34547.tar.bz2 podman-90ebd7c90993b33d1210187a6a2871d9d4b34547.zip |
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 <rothberg@redhat.com>
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,4 +1,5 @@ export GO111MODULE=off +export GOPROXY=https://proxy.golang.org GO ?= go DESTDIR ?= |