From 9c9f9430a4df5720bdc568e5c8aa1165801c240f Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Mon, 6 Dec 2021 19:42:36 -0600 Subject: [PATCH] go path bin path in path path --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 11fecd3..94b7950 100644 --- a/.bashrc +++ b/.bashrc @@ -78,5 +78,5 @@ fi # add the Go bindir to the path if we have the standard Go install dir if [ -d /usr/local/go ]; then - export PATH=$PATH:/usr/local/go/bin + export PATH=$PATH:$HOME/go/bin:/usr/local/go/bin fi