Skip to content

Instantly share code, notes, and snippets.

@marvell
Created June 13, 2014 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marvell/fd522a338d5ce2e5c524 to your computer and use it in GitHub Desktop.
Save marvell/fd522a338d5ce2e5c524 to your computer and use it in GitHub Desktop.
Load RVM paths into .bashrc file
# Load RVM into a shell session as a function
if [[ -s "$HOME/.rvm/scripts/rvm" ]] ; then
# First try to load from a user install
source "$HOME/.rvm/scripts/rvm"
elif [[ -s "/usr/local/rvm/scripts/rvm" ]] ; then
# Then try to load from a root install
source "/usr/local/rvm/scripts/rvm"
else
printf "ERROR: An RVM installation was not found.\n"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment