Join rc and rc.local folders
This commit is contained in:
19
rc.available/go-env.sh
Normal file
19
rc.available/go-env.sh
Normal file
@@ -0,0 +1,19 @@
|
||||
# Use user defined Go version
|
||||
# GOPATH and GOROOT must be already set in $HOME/.bashrc
|
||||
|
||||
_GO_BIN_DIR="$HOME/go/bin"
|
||||
|
||||
if [[ -d "$_GO_BIN_DIR"]]; then
|
||||
prepend_path_try "$_GO_BIN_DIR"
|
||||
if can_run go; then
|
||||
export GOROOT=$(go env GOROOT)
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ ! -z "$GOPATH" ]]; then
|
||||
prepend_path "$GOPATH/bin"
|
||||
fi
|
||||
|
||||
if [[ ! -z "$GOROOT" ]]; then
|
||||
prepend_path "$GOROOT/bin"
|
||||
fi
|
||||
Reference in New Issue
Block a user