summaryrefslogtreecommitdiff
path: root/.zsh/zshenv/80_go
diff options
context:
space:
mode:
Diffstat (limited to '.zsh/zshenv/80_go')
-rw-r--r--.zsh/zshenv/80_go10
1 files changed, 4 insertions, 6 deletions
diff --git a/.zsh/zshenv/80_go b/.zsh/zshenv/80_go
index 3480627..5c1d7d7 100644
--- a/.zsh/zshenv/80_go
+++ b/.zsh/zshenv/80_go
@@ -2,17 +2,16 @@
#
# Set variables related to the Go programming language
#
-# Copyright © 2010-2016 Tobias Klauser <tklauser@distanz.ch>
+# Copyright © 2010-2017 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=$HOME/go
+_GOROOT="/usr/local/go"
if [ -d $_GOROOT ] ; then
-
- export GOROOT=$_GOROOT
- export GOPATH=$HOME/src/gospace
+ export GOROOT="$_GOROOT"
+ export GOPATH="$HOME/go"
arch="$(uname -m)"
case "$arch" in
@@ -22,7 +21,6 @@ if [ -d $_GOROOT ] ; then
esac
os="$(uname)"
-
case "$os" in
Linux) export GOOS="linux";;
Darwin) export GOOS="darwin";;