From 0c66f62c17bd661f5153d6d8f288978560576606 Mon Sep 17 00:00:00 2001 From: Sam Stephenson Date: Mon, 1 Aug 2011 16:43:19 -0500 Subject: [PATCH] Style --- bin/rbenv-rehash | 2 +- bin/rbenv-versions | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/rbenv-rehash b/bin/rbenv-rehash index 56cb8bd0..33b3fc19 100755 --- a/bin/rbenv-rehash +++ b/bin/rbenv-rehash @@ -2,7 +2,7 @@ set -e -cd "$HOME/.rbenv/shims" +cd "${HOME}/.rbenv/shims" rm * for file in ../versions/*/bin/*; do diff --git a/bin/rbenv-versions b/bin/rbenv-versions index 0a2b5a0b..97f217c2 100755 --- a/bin/rbenv-versions +++ b/bin/rbenv-versions @@ -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