summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2020-02-28 20:07:19 +0100
committerRobert Günzler <r@gnzler.io>2020-02-28 20:07:19 +0100
commitc7ebe60f2e5fb917ea032b8d693d517b7a2b4397 (patch)
tree2a61b16116566de7c2d0a6da22c902327919ac1b
parentc767fe27018aa743dd695058dab464b77c37abdf (diff)
Add gopath/bin to path
-rw-r--r--.profile5
1 files changed, 5 insertions, 0 deletions
diff --git a/.profile b/.profile
index bc2e458..b9088ab 100644
--- a/.profile
+++ b/.profile
@@ -7,6 +7,11 @@ if [ -d "${HOME}/AppImages" ]; then
 	pathappend "${HOME}/AppImages"
 fi
 
+export GOPATH="${HOME}/go"
+if [ -d "${GOPATH}" ]; then
+	pathappend "${GOPATH}/bin"
+fi
+
 # Use the new build backend in docker
 export DOCKER_BUILDKIT=1