1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-16 23:33:45 -05:00

Initial commit

This commit is contained in:
Sam Stephenson
2011-08-01 15:50:26 -05:00
commit 99035a49a9
8 changed files with 139 additions and 0 deletions

15
bin/rbenv-versions Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
RBENV_VERSION="$(rbenv-version)"
for path in ~/.rbenv/versions/*; do
if [ -d "$path" ]; then
version="${path##*/}"
if [ "$version" == "$RBENV_VERSION" ]; then
echo "* ${version##*/}"
else
echo " ${version##*/}"
fi
fi
done