From f91736150e5b705d832ef9259a0ce30487da3637 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 6 Dec 2015 23:41:43 -0500 Subject: login: have GOROOT golang take precedence over system golang --- .config/login.d/10_golang.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/login.d/10_golang.sh b/.config/login.d/10_golang.sh index a9899a8..9feda74 100644 --- a/.config/login.d/10_golang.sh +++ b/.config/login.d/10_golang.sh @@ -2,7 +2,7 @@ if [ -z "$GOROOT" ]; then export GOROOT="/homes/shumakl/.prefix.$(uname -m)/go" if [ -d "$GOROOT" ]; then - PATH="$PATH:$GOROOT/bin" + PATH="$GOROOT/bin:$PATH" else unset GOROOT fi -- cgit v1.2.3