mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
15 lines
261 B
Bash
Executable file
15 lines
261 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
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
|