From 861e5decf3088cbb0a9f82a1dc418423c32af077 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Sun, 4 Jul 2021 13:25:58 +0100 Subject: [PATCH] [shell-common] Add GOROOT bin folder to path --- shell-common/.config/shell-common/exports.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/shell-common/.config/shell-common/exports.sh b/shell-common/.config/shell-common/exports.sh index 098b271..af2c431 100644 --- a/shell-common/.config/shell-common/exports.sh +++ b/shell-common/.config/shell-common/exports.sh @@ -17,6 +17,7 @@ fi # Go stuff export GOPATH=$HOME/go/ +export PATH=${GOPATH}bin:$PATH if [ -z ${GOROOT+x} ] && [ -d /usr/local/go ]; then export GOROOT=/usr/local/go/ export PATH=$PATH:$HOME/go/bin