Why is "config" not created when running "rvm install 1.9. *"

When I install a new instance of any ruby ​​via rvm and run the 'rvm list', I get:

rvm rubies /Users/AirBook/.rvm/scripts/list: line 321: /Users/AirBook/.rvm/rubies/ruby-1.9.2-p320/config: No such file or directory ruby-1.9.2-p320 [ ] ruby-1.9.3-p194 [ ] =* ruby-1.9.3-p286 [ ] 

This is not a big problem, as I just add the 'config' file to the specific ruby ​​folder. Plus, I do not foresee that I am adding many different versions of rubies.

but still wondering about this peculiar behavior, any idea what’s wrong with it, should I pass extra flags?

+6
source share
1 answer

This was a problem with rvm version 1.16.17. It is already installed on the current version (1.16.17), as you can see here: https://github.com/wayneeseguin/rvm/issues/1254

You just need to update rvm:

 rvm get stable 

or if you prefer, you can use the previous version (I did this until the patch was included in the stable version)

 rvm get 1.16.15 

amuses

+4
source

All Articles