diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2023-10-31 09:57:13 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2023-10-31 09:58:38 +0100 |
commit | 628c1c711870af7abf062416d8126663dfd6cec9 (patch) | |
tree | 87ab69e74f4b88840fced6503e5ee55baf6dce43 /.zsh/zshenv | |
parent | 56272dd33467cf9fd82a3647cd22b3e4b337396d (diff) |
.zsh/zshenv: GOTOOLCHAIN=path
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 a6924d6..b7f6413 100644 --- a/.zsh/zshenv/80_go +++ b/.zsh/zshenv/80_go @@ -41,7 +41,7 @@ alias gotip=$HOME/src/go/bin/go # https://github.com/maruel/panicparse#gotraceback export GOTRACEBACK=all -# always use local Go toolchain -export GOTOOLCHAIN=local +# Alweays use Go toolchains from executable path +export GOTOOLCHAIN=path # vim:ft=zsh |