From 4ffb74d7df3b612ad49625e8b65423afd2ed95c8 Mon Sep 17 00:00:00 2001 From: Brandon Kreisel Date: Sun, 20 Sep 2015 19:07:55 -0400 Subject: [PATCH] Add dialog dependency and homebrew installation --- 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