1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-08 11:33:49 -05:00
This commit is contained in:
Sam Stephenson
2011-08-01 16:43:19 -05:00
parent b5d030bee7
commit 0c66f62c17
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
set -e
cd "$HOME/.rbenv/shims"
cd "${HOME}/.rbenv/shims"
rm *
for file in ../versions/*/bin/*; do

View File

@@ -9,9 +9,9 @@ for path in ~/.rbenv/versions/*; do
version="${path##*/}"
if [ "$version" == "$RBENV_VERSION" ]; then
echo "* ${version##*/}"
echo "* $version"
else
echo " ${version##*/}"
echo " $version"
fi
fi
done