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 using zsh in OSX with rvm, but it doesn't load the default ruby at login:

in my .zshrc I have

source $ZSH/oh-my-zsh.sh
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"

I've tried to swap those two lines, but still it doesn't work..

(of course in bash it works..)

share|improve this question
I found an error if I start Terminal.app (and not the usual iTerm) it says: /Users/luca/.rvm/scripts/initialize:45: __rvm_cleanse_variables: function definition file not found – luca Oct 4 '12 at 15:11

1 Answer

The issue is that OMZ generated ~/.zshrc with hardcoded PATH, this makes the shell overwrite it every time this file is read.

There is also a bug in ZSH or some mysterious power that makes ZSH read ~/.zshrc after ~/.zprofile - this leads to resetting PATH.

Just comment out the PATH=... line in ~/.zshrc and it should work.

As for the mentioned error - it is supposed to be fixed already, update RVM - rvm get head - and open a new terminal ... if it still appears - open a new issue for RVM.

share|improve this answer

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.