Selaa lähdekoodia

have `versions` also list "system" if it exists

Closes #263
pull/360/head^2
Mislav Marohnić 13 vuotta sitten
vanhempi
commit
e548877ead
1 muutettua tiedostoa jossa 14 lisäystä ja 7 poistoa
  1. +14
    -7
      libexec/rbenv-versions

+ 14
- 7
libexec/rbenv-versions Näytä tiedosto

@ -12,14 +12,21 @@ else
current_version="$(rbenv-version-name || true)"
fi
print_version() {
if [ "$1" == "$current_version" ]; then
echo "${hit_prefix}$(rbenv-version)"
else
echo "${miss_prefix}$1"
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
version="${path##*/}"
if [ "$version" == "$current_version" ]; then
echo "${hit_prefix}$(rbenv-version)"
else
echo "${miss_prefix}${version}"
fi
print_version "${path##*/}"
fi
done

Ladataan…
Peruuta
Tallenna