From 9c89594a5cb4bad6cb79be368ab37b7ad003ba5f Mon Sep 17 00:00:00 2001 From: Zach Holman Date: Tue, 1 Dec 2015 12:21:39 -0500 Subject: [PATCH] Plug homebrew into the install process --- script/install | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/install b/script/install index 1887fc2ca49..2107906eeea 100755 --- a/script/install +++ b/script/install @@ -6,5 +6,8 @@ set -e cd "$(dirname $0)"/.. +# Run Homebrew through the Brewfile +brew bundle + # find the installers and run them iteratively find . -name install.sh | while read installer ; do sh -c "${installer}" ; done