1
0
mirror of https://github.com/kremalicious/dotfiles.git synced 2024-06-17 01:53:10 +02:00

rvm stuff

This commit is contained in:
Matthias Kretschmann 2013-01-27 11:24:46 +01:00
parent 3a58c47b65
commit 9c2797fb3c

View File

@ -1,7 +1,7 @@
########################################################################
# bash_profile, basically from the whole internet
# and a lot from @necolas, @mathiasbynens & @rtomayko
#
#
# https://github.com/mathiasbynens/dotfiles
# https://github.com/necolas/dotfiles
# https://github.com/rtomayko/dotfiles
@ -46,6 +46,9 @@ ANDROID_HOME="/usr/local/Cellar/android-sdk/r21"
[ -d "/usr/local/mysql/bin" ] && PATH="/usr/local/mysql/bin:$PATH";
[ -d "/usr/local/share/npm/bin" ] && PATH="/usr/local/share/npm/bin:$PATH";
[ -d "$HOME/.rvm/bin" ] && PATH="$HOME/.rvm/bin:$PATH"; # Add RVM to PATH for scripting
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
export PATH
# ----------------------------------------------------------------------