diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2011-10-11 15:23:11 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2011-10-11 15:23:11 +0200 |
commit | 48bb6a44cb8eb1e9fdc7b1054678dbcb1ece3821 (patch) | |
tree | 9a0c65fb8749e8ea58ffe26fc9904589659b00ae /.zsh/zshenv | |
parent | ba90ffe60f59f48d502e4af83638b9297b875cc2 (diff) |
Add $GOROOT/bin to $PATH
Diffstat (limited to '.zsh/zshenv')
-rw-r--r-- | .zsh/zshenv/80_go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.zsh/zshenv/80_go b/.zsh/zshenv/80_go index bcb1c89..b13f255 100644 --- a/.zsh/zshenv/80_go +++ b/.zsh/zshenv/80_go @@ -25,6 +25,8 @@ if [ -d $_GOROOT ] ; then Darwin) export GOOS="darwin";; *) export GOOS="unsupported";; esac + + path_append $_GOROOT/bin fi # vim:ft=zsh |