Created
April 4, 2012 00:47
-
-
Save workmaster2n/2296770 to your computer and use it in GitHub Desktop.
where do we load rvm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if [[ -n "$PS1" ]]; then | |
| ... | |
| OTHER STUFF | |
| ... | |
| if [[ -s $HOME/.rvm/scripts/rvm ]] ; then source $HOME/.rvm/scripts/rvm ; fi | |
| fi | |
| OR | |
| if [[ -n "$PS1" ]]; then | |
| ... | |
| OTHER STUFF | |
| ... | |
| fi | |
| if [[ -s $HOME/.rvm/scripts/rvm ]] ; then source $HOME/.rvm/scripts/rvm ; fi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment