1
0
Fork 0

zsh: add GOPATH to PATH

This commit is contained in:
Luca Bilke 2024-07-31 11:21:00 +02:00
parent 1e0a3eea4c
commit f770f38a63

View file

@ -130,7 +130,8 @@ for NEW_PATH in \
"${XDG_DATA_HOME}/cargo/bin" \
"${XDG_CONFIG_HOME}/composer/vendor/bin" \
"$(gem environment gempath)" \
"$(find -L ~/.local/bin -type d -printf %p: | sed 's/.$//')"
"$(find -L ~/.local/bin -type d -printf %p: | sed 's/.$//')" \
"${GOPATH}/bin"
do
case ":$PATH:" in
*":$NEW_PATH:"*) ;;