pyenv/libexec/rbenv-versions

27 lines
510 B
Text
Raw Normal View History

#!/usr/bin/env bash
set -e
2011-08-01 20:56:52 +00:00
RBENV_VERSION_NAME="$(rbenv-version-name)"
2011-08-03 04:19:37 +00:00
if [ "$1" = "--bare" ]; then
hit_prefix=""
miss_prefix=""
print_version="$RBENV_VERSION_NAME"
else
hit_prefix="* "
miss_prefix=" "
print_version="$(rbenv-version)"
2011-08-03 04:19:37 +00:00
fi
for path in "${HOME}/.rbenv/versions/"*; do
2011-08-01 20:50:26 +00:00
if [ -d "$path" ]; then
version="${path##*/}"
if [ "$version" == "$RBENV_VERSION_NAME" ]; then
echo "${hit_prefix}${print_version}"
2011-08-01 20:50:26 +00:00
else
2011-08-03 04:19:37 +00:00
echo "${miss_prefix}${version}"
2011-08-01 20:50:26 +00:00
fi
fi
done