pyenv/libexec/rbenv-versions

24 lines
404 B
Text
Raw Normal View History

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