11 lines
197 B
Bash
11 lines
197 B
Bash
|
# conflict with go's gb
|
||
|
unalias gb &>/dev/null
|
||
|
|
||
|
export GOROOT=/usr/local/go
|
||
|
export GOPATH=$MYSRC/gopath
|
||
|
|
||
|
# Set the list of directories that Zsh searches for programs.
|
||
|
path=(
|
||
|
$path
|
||
|
$GOPATH/bin
|
||
|
)
|