Created
August 16, 2012 15:03
-
-
Save danielholmstrom/3370851 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function loadrvm { | |
[ -f ~/.rvm/scripts/rvm ] && { | |
source ~/.rvm/scripts/rvm | |
[ "$RVM_VERSION" ] || export RVM_VERSION='1.9.2' | |
rvm use $RVM_VERSION | |
return | |
} | |
echo "loadrvm: rvm not found" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment