diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2021-04-09 19:36:53 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2021-04-09 19:36:53 +0200 |
commit | c6bf1f84e079358dca342c783b46bc99cd859a32 (patch) | |
tree | bb85abf37ac4d58d7cc3fef5d684231fe3ec0ecd /.zsh/zshenv | |
parent | c61639ef9e9b40a5d2a063f58f998883c3130933 (diff) |
zshenv: unset GOPROXY and GOSUMDB
Leave them to their default values (using the module proxy) to avoid
large build times due to module downloads and broken builds due to
deleted git tags.
Diffstat (limited to '.zsh/zshenv')
-rw-r--r-- | .zsh/zshenv/80_go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.zsh/zshenv/80_go b/.zsh/zshenv/80_go index bea44fe..fe4e0bb 100644 --- a/.zsh/zshenv/80_go +++ b/.zsh/zshenv/80_go @@ -35,7 +35,7 @@ fi alias gotip=$HOME/src/go/bin/go export GO111MODULE=on -export GOPROXY=direct -export GOSUMDB=off +# export GOPROXY=direct +# export GOSUMDB=off # vim:ft=zsh |