fix .zprofile sourcing .local/bin when it is a symlink
This commit is contained in:
parent
bc72905820
commit
caf97a276d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue