1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-16 07:13:53 -05:00

pyenv-prefix should return proper prefix of system version (fixes #391)

This commit is contained in:
Yamashita Yuu
2015-06-27 01:05:15 +09:00
parent 7b797c3797
commit 114063495f
2 changed files with 12 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ OLDIFS="$IFS"
{ IFS=:
for version in ${PYENV_VERSION}; do
if [ "$version" = "system" ]; then
if PYTHON_PATH="$(pyenv-which python 2>/dev/null)"; then
if PYTHON_PATH="$(PYENV_VERSION="${version}" pyenv-which python 2>/dev/null)"; then
PYENV_PREFIX_PATH="${PYTHON_PATH%/bin/*}"
else
echo "pyenv: system version not found in PATH" >&2