Created
January 31, 2012 20:45
-
-
Save batter/1712798 to your computer and use it in GitHub Desktop.
RVM's .rvmrc files break `rvm list` output
This file contains 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
source "/Users/batkins/.rvm/scripts/rvm" # status=0 | |
rvm --version # status=0; match=/rvm 1.10.2/ | |
mkdir ABC-abc # status=0 | |
cd ABC-abc # status=0 | |
rvm use 1.9.2@ABC-abc --rvmrc --create # status=0; match=/Using .*ruby-1.9.2-p290 with gemset ABC-abc/ | |
rvm current # status=0; match=/ruby-1.9.2-p290@ABC-abc/ | |
rvm list # status=0; match=/\* ree-1.8.7-2011.03/;match=/=> ruby-1.9.2-p290/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment