diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-07-23 17:02:30 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-07-23 17:02:30 +0200 |
commit | 9eaf80904dcd53d03780315f6eec4d0b9a710cb4 (patch) | |
tree | b6a9c9f3b29a4ecdaf2be0d9abc9721cbe7a9bd8 | |
parent | df9ed18e75db214f15f0803fc6557668ef84a173 (diff) |
zshenv: Adjust GOROOT
-rw-r--r-- | .zsh/zshenv/80_go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.zsh/zshenv/80_go b/.zsh/zshenv/80_go index 9da79e8..3970e2f 100644 --- a/.zsh/zshenv/80_go +++ b/.zsh/zshenv/80_go @@ -2,17 +2,17 @@ # # Set variables related to the Go programming language # -# Copyright © 2010-2013 Tobias Klauser <tklauser@distanz.ch> +# Copyright © 2010-2015 Tobias Klauser <tklauser@distanz.ch> # Released under the terms of the Artistic Licence 2.0 # # Source repository: git://git.distanz.ch/dotfiles/zsh.git -_GOROOT=/opt/local/go/ +_GOROOT=$HOME/go/ if [ -d $_GOROOT ] ; then export GOROOT=$_GOROOT - export GOPATH=$HOME/src/gospace/ + export GOPATH=$HOME/src/gospace arch="$(uname -m)" case "$arch" in |