blob: bcb1c89ef5b9987b2bdd64b381cb027624bb3b22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# zshenv/80_go
#
# Set variables related to the Go programming language
#
# Copyright © 2010 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/src/go
if [ -d $_GOROOT ] ; then
export GOROOT=$_GOROOT
arch="$(uname -m)"
case "$arch" in
x86_64) export GOARCH="amd64";;
i*86) export GOARCH="386";;
*) export GOARCH="unsupported";;
esac
os="$(uname)"
case "$os" in
Linux) export GOOS="linux";;
Darwin) export GOOS="darwin";;
*) export GOOS="unsupported";;
esac
fi
# vim:ft=zsh
|