fix adding ~/apps/*/bin to path
This commit is contained in:
parent
86e6745eee
commit
ce725d62d3
1 changed files with 1 additions and 1 deletions
2
zshenv
2
zshenv
|
|
@ -4,7 +4,7 @@ path=($HOME/bin $HOME/apps/bin /usr/local/riak/bin /usr/local/bin /usr/local/sbi
|
|||
[[ -e "$HOME/.rbenv/bin" ]] && path=($HOME/.rbenv/bin $path)
|
||||
|
||||
if [[ -d $HOME/apps/ ]]; then
|
||||
for bindir in $HOME/apps/*/bin; do
|
||||
for bindir in $HOME/apps/*/bin(N); do
|
||||
path=($bindir $path)
|
||||
done
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue