bashrc.d: add go, pyenv

This commit is contained in:
Paul Walker
2023-07-21 13:03:21 +01:00
parent 34bd735e57
commit 3bcc6e0415
2 changed files with 10 additions and 0 deletions

5
bashrc.d/go.bash Normal file
View File

@@ -0,0 +1,5 @@
GO=$(which go)
if [ -n "$GO" ] ; then
export GOPATH=$(go env GOPATH)
addpath "$GOPATH/bin"
fi