1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-12 13:33:45 -05:00

Remove support for legacy version file

This commit is contained in:
Jason Karns
2015-12-28 21:34:05 -05:00
parent 3c9674453f
commit f880dc6d6f
6 changed files with 1 additions and 91 deletions

View File

@@ -12,9 +12,6 @@ find_local_version_file() {
if [ -e "${root}/.ruby-version" ]; then
echo "${root}/.ruby-version"
return 0
elif [ -e "${root}/.rbenv-version" ]; then
echo "${root}/.rbenv-version"
return 0
fi
[ -n "$root" ] || break
root="${root%/*}"