5 lines
107 B
Bash
5 lines
107 B
Bash
if which go 2>&1 > /dev/null; then
|
|
export GOPATH=~/development/go
|
|
export PATH=${PATH}:${GOPATH}/bin
|
|
fi
|