mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
parent
21391c8d2f
commit
e548877ead
1 changed files with 14 additions and 7 deletions
|
@ -12,14 +12,21 @@ else
|
||||||
current_version="$(rbenv-version-name || true)"
|
current_version="$(rbenv-version-name || true)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for path in "${RBENV_ROOT}/versions/"*; do
|
print_version() {
|
||||||
if [ -d "$path" ]; then
|
if [ "$1" == "$current_version" ]; then
|
||||||
version="${path##*/}"
|
|
||||||
|
|
||||||
if [ "$version" == "$current_version" ]; then
|
|
||||||
echo "${hit_prefix}$(rbenv-version)"
|
echo "${hit_prefix}$(rbenv-version)"
|
||||||
else
|
else
|
||||||
echo "${miss_prefix}${version}"
|
echo "${miss_prefix}$1"
|
||||||
fi
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# detect if there is system ruby
|
||||||
|
if RBENV_VERSION=system rbenv-which ruby >/dev/null 2>&1; then
|
||||||
|
print_version system
|
||||||
|
fi
|
||||||
|
|
||||||
|
for path in "${RBENV_ROOT}/versions/"*; do
|
||||||
|
if [ -d "$path" ]; then
|
||||||
|
print_version "${path##*/}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue