After installing rvm, using the following:
$ curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer > rvm-installer
$ bash rvm-installer
I did the following as advised in the rvm site:
$ echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profile
$ source .bash_profile
-sh: is_a_function: command not found
When I looked up the installation output, I see that this error has been reported during the installation too (though I also see: "Installation of RVM to /Users//.rvm/ is complete.")
I looked up the rvm scripts and I am able to see the function is_a_function in utility script.
Please advise on what I need to do now to fix this.
P.S.: I had to download the installer locally since I kept getting the following error:
$ bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
-sh: syntax error near unexpected token `<'
"Installation of RVM to /Users//.rvm/ is complete."line looks a little wrong. Where did rvm actually get installed to? And you should add the[[ -s "$HOME/.rvm/scripts/rvm"...bit to your .bashrc file (so that way it gets invoked each time you start BASH, instead of having to explicitly call it from the command line). – Michael Dautermann Dec 24 '11 at 11:20