mirror of
https://github.com/pyenv/pyenv.git
synced 2025-11-16 15:23:53 -05:00
Move subcommands into libexec/
This commit is contained in:
15
libexec/rbenv-versions
Executable file
15
libexec/rbenv-versions
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user