projects
/
dotfiles
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6fbd584
)
Adding rvm to the .bashrc
author
David Kerkeslager
<kerkeslager@gmail.com>
Mon, 23 Jan 2012 23:06:27 +0000
(18:06 -0500)
committer
David Kerkeslager
<david.kerkeslager@globalpovertyproject.com>
Tue, 4 Aug 2015 15:01:14 +0000
(15:01 +0000)
.bashrc
patch
|
blob
|
history
diff --git
a/.bashrc
b/.bashrc
index
649885f
..
68d85a6
100644
(file)
--- a/
.bashrc
+++ b/
.bashrc
@@
-60,6
+60,14
@@
if [ -f $HOME/.bashrc_local ]; then
source $HOME/.bashrc_local
fi
+# Install RVM if it's not installed.
+if [ ! -f $HOME/.rvm/scripts/rvm ]; then
+ bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )
+fi
+
+# Load RVM into shell session.
+[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
+
# Automatically open screen.
# The if statement prevents it from recursing (since screen opens bash).
if [ $TERM != screen ]; then