summaryrefslogtreecommitdiff
path: root/.config/login.d/10_golang.sh
blob: a9899a8b90afdc483b510278680f0917c365e9ca (plain)
1
2
3
4
5
6
7
8
9
#!/hint/sh
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