From 7f42beda95c189ffaf457bbba0d3585f27b25a6b Mon Sep 17 00:00:00 2001 From: Brandon Kreisel Date: Sun, 20 Sep 2015 19:07:55 -0400 Subject: [PATCH] Add homebrew and add dialog dependency per #413 --- bootstrap/mac.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bootstrap/mac.sh b/bootstrap/mac.sh index a48afe11e..47450cd9e 100755 --- a/bootstrap/mac.sh +++ b/bootstrap/mac.sh @@ -1,2 +1,10 @@ #!/bin/sh +if hash brew 2>/dev/null; then + echo "Homebrew Installed" +else + echo "Homebrew Not Installed\nDownloading..." + ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" +fi + brew install augeas +brew install dialog