about summary refs log tree commit diff stats
path: root/profile/go.sh
diff options
context:
space:
mode:
Diffstat (limited to 'profile/go.sh')
-rw-r--r--profile/go.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/profile/go.sh b/profile/go.sh index 8b4ca26..205c881 100644 --- a/profile/go.sh +++ b/profile/go.sh
@@ -1,9 +1,9 @@
1export GOPATH="${XDG_DATA_HOME:=$HOME/.local/share}/go" 1export GOPATH="$HOME/src/go"
2 2
3# https://drewdevault.com/2022/05/25/Google-has-been-DDoSing-sourcehut.html 3# https://drewdevault.com/2022/05/25/Google-has-been-DDoSing-sourcehut.html
4export GOPROXY=direct 4export GOPROXY=direct
5 5
6# For the GO binary ... XXX: this is slightly clunky (~/usr/local/go/bin is the directory) 6# For the GO binary ... XXX: this is slightly clunky (~/usr/local/go/bin is the directory)
7path_add_to_PATH $(realpath "$XDG_DATA_HOME/../local/go/bin") 7path_add_to_PATH "$GOPATH/go/bin"
8 8
9command -v go >/dev/null 2>&1 && path_add_to_PATH "$(go env GOPATH)/bin" 9command -v go >/dev/null 2>&1 && path_add_to_PATH "$(go env GOPATH)/bin"