Created
January 18, 2013 18:14
-
-
Save pietern/4566793 to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/env bash | |
set -e | |
[ -n "$DEBUG" ] && set -x | |
# rbenv | |
if [ ! -d "$HOME/.rbenv" ] | |
then | |
pushd $HOME | |
git clone git://github.com/sstephenson/rbenv.git .rbenv | |
popd | |
else | |
pushd $HOME/.rbenv | |
git pull | |
popd | |
fi | |
# ruby-build | |
pushd $HOME/.rbenv | |
mkdir -p plugins | |
cd plugins | |
if [ ! -d ruby-build ] | |
then | |
git clone git://github.com/sstephenson/ruby-build.git ruby-build | |
else | |
pushd ruby-build | |
git pull | |
popd | |
fi | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment