Respect RBENV_ROOT and PYENV_ROOT if set

This commit is contained in:
Evan Sosenko 2018-02-21 10:43:25 -08:00
commit 345600d436
No known key found for this signature in database
GPG key ID: 757C899CECF66FE0
2 changed files with 8 additions and 0 deletions

View file

@ -9,6 +9,10 @@ _pyenv-from-homebrew-installed() {
FOUND_PYENV=0
pyenvdirs=("$HOME/.pyenv" "/usr/local/pyenv" "/opt/pyenv")
if [[ -n "$PYENV_ROOT" ]]; then
pyenvdirs=($PYENV_ROOT "${pyenvdirs[@]}")
fi
for pyenvdir in "${pyenvdirs[@]}" ; do
if [ -d $pyenvdir/bin -a $FOUND_PYENV -eq 0 ] ; then
FOUND_PYENV=1