From 2094ad6a0410b2e19a062fa8f17493a316468fe9 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Wed, 9 Nov 2016 15:55:24 +0100 Subject: zshenv/80_go: add $GOSPACE/bin to PATH --- .zsh/zshenv/80_go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.zsh/zshenv/80_go b/.zsh/zshenv/80_go index 8ff29e2..3480627 100644 --- a/.zsh/zshenv/80_go +++ b/.zsh/zshenv/80_go @@ -2,7 +2,7 @@ # # Set variables related to the Go programming language # -# Copyright © 2010-2015 Tobias Klauser +# Copyright © 2010-2016 Tobias Klauser # Released under the terms of the Artistic Licence 2.0 # # Source repository: git://git.distanz.ch/dotfiles/zsh.git @@ -30,6 +30,9 @@ if [ -d $_GOROOT ] ; then esac path_append $GOROOT/bin + if [ -d $GOPATH/bin ] ; then + path_append $GOPATH/bin + fi fi # vim:ft=zsh -- cgit v1.2.3-54-g00ecf