pyenv/libexec/rbenv-versions

16 lines
269 B
Text
Raw Normal View History

2011-08-02 23:11:41 +00:00
#!/usr/bin/env bash -e
2011-08-01 20:56:52 +00:00
2011-08-01 20:50:26 +00:00
RBENV_VERSION="$(rbenv-version)"
for path in ~/.rbenv/versions/*; do
if [ -d "$path" ]; then
version="${path##*/}"
if [ "$version" == "$RBENV_VERSION" ]; then
2011-08-01 21:43:19 +00:00
echo "* $version"
2011-08-01 20:50:26 +00:00
else
2011-08-01 21:43:19 +00:00
echo " $version"
2011-08-01 20:50:26 +00:00
fi
fi
done