summaryrefslogtreecommitdiff
path: root/.config/login.d/10_golang.sh
blob: c3ae01382d62b7f2da411c55480abbb151d5c78b (plain)
1
2
3
4
5
6
7
8
if [[ -z $GOROOT ]]; then
	export GOROOT="/homes/shumakl/.prefix.$(uname -m)/go"
	if [[ -d $GOROOT ]]; then
		PATH="$PATH:$GOROOT/bin"
	else
		unset GOROOT
	fi
fi