Ensure the software-install script checks the newly rename .Brewfile.

This commit is contained in:
Scott Wallace 2016-03-16 17:41:28 +00:00
parent d4bb13ac5d
commit 861c4985d7

View file

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