From 544d5c069eba2ad03c31deb308a8eb7f23c75e34 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Wed, 30 Mar 2022 16:23:42 +0100 Subject: [PATCH] [shell-common] add GOROOT bin to path --- shell-common/.config/shell-common/exports.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell-common/.config/shell-common/exports.sh b/shell-common/.config/shell-common/exports.sh index 21863ae..9167414 100644 --- a/shell-common/.config/shell-common/exports.sh +++ b/shell-common/.config/shell-common/exports.sh @@ -20,7 +20,7 @@ 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 + export PATH=$PATH:$GOROOT/bin:$HOME/go/bin fi # https://github.com/oz/tz