Files
linux-workspace/rc.available/go-env.sh
2025-01-03 16:58:29 +00:00

20 lines
373 B
Bash

# 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