summaryrefslogtreecommitdiff
path: root/.config/login.d/10_golang.sh
blob: 9feda747986c2c6a2bd6ac0f47b65966e6a78b58 (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="$GOROOT/bin:$PATH"
	else
		unset GOROOT
	fi
fi