mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Fall back to $PWD if a local version file can't be found in $RBENV_DIR
This commit is contained in:
parent
c3fe192243
commit
6c1fb9ffd0
1 changed files with 13 additions and 8 deletions
|
@ -2,14 +2,19 @@
|
||||||
set -e
|
set -e
|
||||||
[ -n "$RBENV_DEBUG" ] && set -x
|
[ -n "$RBENV_DEBUG" ] && set -x
|
||||||
|
|
||||||
root="$RBENV_DIR"
|
find_local_version_file() {
|
||||||
while [ -n "$root" ]; do
|
local root="$1"
|
||||||
if [ -e "${root}/.rbenv-version" ]; then
|
while [ -n "$root" ]; do
|
||||||
echo "${root}/.rbenv-version"
|
if [ -e "${root}/.rbenv-version" ]; then
|
||||||
exit
|
echo "${root}/.rbenv-version"
|
||||||
fi
|
exit
|
||||||
root="${root%/*}"
|
fi
|
||||||
done
|
root="${root%/*}"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
find_local_version_file "$RBENV_DIR"
|
||||||
|
[ "$RBENV_DIR" = "$PWD" ] || find_local_version_file "$PWD"
|
||||||
|
|
||||||
global_version_file="${RBENV_ROOT}/version"
|
global_version_file="${RBENV_ROOT}/version"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue