mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Fix broken pyenv local
This commit is contained in:
parent
41ce3aade2
commit
be3fc6d8cb
1 changed files with 10 additions and 20 deletions
|
@ -32,27 +32,17 @@ fi
|
||||||
versions=("$@")
|
versions=("$@")
|
||||||
|
|
||||||
if [ "$versions" = "--unset" ]; then
|
if [ "$versions" = "--unset" ]; then
|
||||||
rm -f .python-version .pyenv-version
|
rm -f .python-version
|
||||||
elif [ -n "$versions" ]; then
|
elif [ -n "$versions" ]; then
|
||||||
previous_file="$(PYENV_VERSION= pyenv-version-origin || true)"
|
|
||||||
pyenv-version-file-write .python-version "${versions[@]}"
|
pyenv-version-file-write .python-version "${versions[@]}"
|
||||||
if [ "$previous_file" -ef .pyenv-version ]; then
|
|
||||||
rm -f .pyenv-version
|
|
||||||
{ echo "pyenv: removed existing \`.pyenv-version' file and migrated"
|
|
||||||
echo " local version specification to \`.python-version' file"
|
|
||||||
} >&2
|
|
||||||
fi
|
|
||||||
else
|
else
|
||||||
OLDIFS="$IFS"
|
if version_file="$(pyenv-version-file "$PWD")"; then
|
||||||
IFS=: versions=($(
|
IFS=: versions=($(pyenv-version-file-read "$version_file"))
|
||||||
pyenv-version-file-read .python-version ||
|
|
||||||
pyenv-version-file-read .pyenv-version ||
|
|
||||||
{ echo "pyenv: no local version configured for this directory"
|
|
||||||
exit 1
|
|
||||||
} >&2
|
|
||||||
))
|
|
||||||
IFS="$OLDIFS"
|
|
||||||
for version in "${versions[@]}"; do
|
for version in "${versions[@]}"; do
|
||||||
echo "$version"
|
echo "$version"
|
||||||
done
|
done
|
||||||
|
else
|
||||||
|
echo "pyenv: no local version configured for this directory" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue