mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
jenv: fix brew directory search
`brew --prefix jenv` doesn't ensure jenv is installed so we have to recheck if the bin folder is still there.
This commit is contained in:
parent
e4d2d27af4
commit
fceae90219
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ done
|
|||
|
||||
if [[ $FOUND_JENV -eq 0 ]]; then
|
||||
if (( $+commands[brew] )) && jenvdir="$(brew --prefix jenv)"; then
|
||||
FOUND_JENV=1
|
||||
[[ -d "${jenvdir}/bin" ]] && FOUND_JENV=1
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue