I am installing Ruby on Rails on Mac OS X. The tutorial I am following says to add:
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
to ~/.bash_profile.
What does this line do?
Thanks
|
I am installing Ruby on Rails on Mac OS X. The tutorial I am following says to add:
to What does this line do? Thanks |
|||
|
|
|
This portion is a test condition (
This is a logical
|
||||
|
|
|
It checks if the file exists and has size great than zero, and if so, it executes the file. The file is |
|||
|
I just installed
I guess it is always a good idea to take a look at the latest release notes. Also I found the "How to use RVM" screencast very helpful! It also includes information about your question in the first minutes. |
||||
|
|