diff options
Diffstat (limited to 'profile/.profile.d/60_go.sh')
-rw-r--r-- | profile/.profile.d/60_go.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/profile/.profile.d/60_go.sh b/profile/.profile.d/60_go.sh new file mode 100644 index 0000000..252c46c --- /dev/null +++ b/profile/.profile.d/60_go.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +if command -v go >/dev/null 2>&1; then + export GO111MODULE="on" + export GOPATH="${HOME}/.go" + + path_append "${GOPATH}/bin" +fi |