From 507c15b7312fb3197fae785e259a22ccbdf4c9c2 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Thu, 17 Jan 2019 09:45:24 +0100 Subject: [PATCH] set GOPATH to $HOME/.local --- .profile | 1 + 1 file changed, 1 insertion(+) diff --git a/.profile b/.profile index 5621845..0a2c6ce 100644 --- a/.profile +++ b/.profile @@ -18,4 +18,5 @@ then # set PATH so it includes user's private bin dirs if they exist [ -d "$HOME/.local/bin" ] && PATH="$HOME/.local/bin:$PATH" [ -d "$HOME/bin" ] && PATH="$HOME/bin:$PATH" + [ -d "$HOME/.local" ] && export GOPATH=$HOME/.local fi