Merge pull request #84 'daenney-pyenv-homebrew'

This commit is contained in:
Bruno Pinto 2013-11-05 23:09:58 -02:00
commit d067714b71

View File

@ -1,7 +1,15 @@
if test -n "$PYENV_ROOT"
if test -d $PYENV_ROOT/bin
set PATH $PYENV_ROOT/bin $PATH
end
if test -d $PYENV_ROOT/shims
set $PATH $PYENV_ROOT/shims $PATH
end
else
if test -d $HOME/.pyenv/bin
set PATH $HOME/.pyenv/bin $PATH
end
if test -d $HOME/.pyenv/shims
set PATH $HOME/.pyenv/shims $PATH
end
end