Last active
November 14, 2016 05:30
-
-
Save sebglazebrook/72b8b064b1788351ad66969ad114b644 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/bash | |
# install homebrew | |
echo "installing homebrew" | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
echo "install homebrew bundle" | |
brew tap Homebrew/bundle | |
# pull down a brewfile | |
echo "pulling down brewfile" | |
# install the brew file | |
echo "installing brewfile" | |
# git pull vagrant vm repo | |
echo "pull vagrant vm repo" | |
# vagrant up | |
echo "vagrant up baby!!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment