Browse Source

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.
Marc Cornellà 6 years ago
parent
commit
fceae90219
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/jenv/jenv.plugin.zsh

+ 1 - 1
plugins/jenv/jenv.plugin.zsh

@@ -10,7 +10,7 @@ done
 
 
 if [[ $FOUND_JENV -eq 0 ]]; then
 if [[ $FOUND_JENV -eq 0 ]]; then
     if (( $+commands[brew] )) && jenvdir="$(brew --prefix jenv)"; then
     if (( $+commands[brew] )) && jenvdir="$(brew --prefix jenv)"; then
-        FOUND_JENV=1
+        [[ -d "${jenvdir}/bin" ]] && FOUND_JENV=1
     fi
     fi
 fi
 fi