Skip to content

Instantly share code, notes, and snippets.

@jeffh
Created October 20, 2014 22:39
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 jeffh/332d5a5ce715b88e64b0 to your computer and use it in GitHub Desktop.
Save jeffh/332d5a5ce715b88e64b0 to your computer and use it in GitHub Desktop.
Cedar Bootstrap
#!/bin/bash
set -e
set -x
cd ~/workspace
git clone https://github.com/pivotal/Cedar.git || (cd Cedar && git pull)
git clone https://github.com/cppforlife/BetterConsole.git || (cd BetterConsole && git pull)
git clone https://github.com/cppforlife/CedarShortcuts.git || (cd CedarShortcuts && git pull)
git clone https://github.com/akitchen/XcodePreferences.git || (cd XcodePreferences && git pull)
git clone https://github.com/akitchen/AppCodePreferences.git || (cd AppCodePreferences && git pull)
(cd Cedar && ./install.sh)
(cd BetterConsole && rake install)
(cd CedarShortcuts && rake install)
(cd XcodePreferences && rake)
(cd AppCodePreferences && rake symlink:all)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment