1
0
Fork 0

fix .zprofile sourcing .local/bin when it is a symlink

This commit is contained in:
Luca Bilke 2022-08-03 21:12:20 +02:00
parent bc72905820
commit caf97a276d

View file

@ -3,7 +3,7 @@
# profile file. Runs on login. Environmental variables are set here.
# Adds `~/.local/bin` to $PATH
export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}"
export PATH="$PATH:${$(find -L ~/.local/bin -type d -printf %p:)%%:}"
# Adds `~/.local/share/npm-global` to $PATH
export PATH=~/.npm-global/bin:$PATH