From 861c4985d75c27b3a6b7777e6c3468daa4d13b95 Mon Sep 17 00:00:00 2001
From: Scott Wallace <scott@wallace.sh>
Date: Wed, 16 Mar 2016 17:41:28 +0000
Subject: [PATCH] Ensure the software-install script checks the newly rename
 .Brewfile.

---
 bin/software-install | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/software-install b/bin/software-install
index f8c8f80..f992cc8 100755
--- a/bin/software-install
+++ b/bin/software-install
@@ -47,8 +47,8 @@ function install_Darwin_software {
     #-------------------------------
     # Run brew bundle if there's a newer version of Brewfile
     #-------------------------------
-    if [ ~/Brewfile -nt ~/.Brewfile.updated ]; then
-        ( brew bundle --global && touch ~/.Brewfile.updated )
+    if [ ~/.Brewfile -nt ~/.Brewfile.updated ]; then
+        ( brew bundle --global install && touch ~/.Brewfile.updated )
     fi
     #-------------------------------