Files
dotfiles/bashrc.d/go.bash
2023-07-21 13:03:24 +01:00

6 lines
98 B
Bash

GO=$(which go)
if [ -n "$GO" ] ; then
export GOPATH=$(go env GOPATH)
addpath "$GOPATH/bin"
fi