Given this .rvmrc
rvm install 1.9.2-p290
Every time I cd I get
Already installed ruby-1.9.2-p290.
To reinstall use:
rvm reinstall 1.9.2-p290
I only want to see output if rvm installs a ruby. I do not want to see the above help message every time I cd. Is there a --quiet flag?
PS: If only the above error message was written to stderr, then I could just use output redirection ..