This commit is contained in:
GitHub Merge Button 2012-01-09 20:56:56 -08:00
commit 4882b2d2e2

View file

@ -1,6 +1,10 @@
# get the name of the branch we are on # get the name of the branch we are on
function rvm_prompt_info() { function rvm_prompt_info() {
ruby_version=$(~/.rvm/bin/rvm-prompt 2> /dev/null) || return ruby_version=$(~/.rvm/bin/rvm-prompt 2> /dev/null) || return
if [ -z $ruby_version ]
then
return
fi
echo "($ruby_version)" echo "($ruby_version)"
} }