Skip to content

Instantly share code, notes, and snippets.

@workmaster2n
Created April 4, 2012 00:47
Show Gist options
  • Save workmaster2n/2296770 to your computer and use it in GitHub Desktop.
Save workmaster2n/2296770 to your computer and use it in GitHub Desktop.
where do we load rvm
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