diff options
Diffstat (limited to '.zsh/zshenv/80_go')
-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 2b863a2..06fb34c 100644 --- a/.zsh/zshenv/80_go +++ b/.zsh/zshenv/80_go @@ -26,9 +26,9 @@ if [ -d $_GOROOT ] ; then *) export GOOS="unsupported";; esac - path_append $_GOROOT/bin + path_prepend $_GOROOT/bin if [ -d $GOPATH/bin ] ; then - path_append $GOPATH/bin + path_prepend $GOPATH/bin fi fi |