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

Split rbenv-version into rbenv-version-name and rbenv-version-origin, update versions, prefix, and which appropriately

This commit is contained in:
Ryan Baumann
2011-08-09 16:41:35 -04:00
parent 2a495dc9ac
commit bd0e1a73f9
6 changed files with 72 additions and 58 deletions

View File

@@ -1,21 +1,23 @@
#!/usr/bin/env bash -e
RBENV_VERSION="$(rbenv-version)"
hit_prefix="* "
miss_prefix=" "
RBENV_VERSION_NAME="$(rbenv-version-name)"
if [ "$1" = "--bare" ]; then
hit_prefix=""
miss_prefix=""
print_version="$RBENV_VERSION_NAME"
else
hit_prefix="* "
miss_prefix=" "
print_version="$(rbenv-version)"
fi
for path in "${HOME}/.rbenv/versions/"*; do
if [ -d "$path" ]; then
version="${path##*/}"
if [ "$version" == "$RBENV_VERSION" ]; then
echo "${hit_prefix}${version}"
if [ "$version" == "$RBENV_VERSION_NAME" ]; then
echo "${hit_prefix}${print_version}"
else
echo "${miss_prefix}${version}"
fi