Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm on Mac OS X Lion and I can't install RVM. I followed the installation guide on the RVM website and tried in both zsh and bash and got the same problem, on the very first step:

$ bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)
Successfully checked out branch ''
Current branch master is up to date.
Successfully pulled (rebased) from origin 
bash: ./scripts/install: /bin/bash^M: bad interpreter: No such file or directory

However if I go into directory /bin, the program bash is there.

Anyone have any idea what's going on here?

share|improve this question

2 Answers

You must configure git.

git config --global core.autocrlf input
git config --global core.safecrlf true

Then rm -rf ~/.rvm and try to install rvm again.

share|improve this answer
Problem in git. Git make pull changes from server in windows fileformat (by default). – avy Sep 15 '11 at 6:33
I see. At first I didn't understand your answer because I didn't see how my problem have anything to do with git. Thanks. – John N Sep 15 '11 at 6:36

The problem in this case is, that there is a CR+LF newline at the end of the end of the shebang. Because you are running a Unix system, only the LF is interpreted as the newline and the CR-symbol is added to the interpreter, which results in bash searching for a file with the name /bin/bash<CR> where <CR> is a single carriage return symbol.

The fix suggested by avy should do the trick.

share|improve this answer
Thanks for the explanation :) – John N Sep 15 '11 at 15:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.