I installed rvm using commands that by convention should return rvm as a function
1) bash < <(curl -sk https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) 2) echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profile 3) source .bash_profile 4) type rvm | head -1 should return ("rvm is a function") // and it returned, rails was perfectly fine yesterday.
It worked fine yesterday, but now today, when I look at the rails. Its talking rails are not installed.
type rvm | head -1 returns "RVM is Hashed".
Here is something I got from the official site, but I donβt know what I should do next. So the question is:
What needs to be done so that rvm is installed in functional mode, and not in binary mode?
source share