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 50469288e9
commit 3f220822ae
Signed by: luca
GPG Key ID: F6E11C9BAA7C82F5
1 changed files with 2 additions and 1 deletions

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:"*) ;;