From d4bb13ac5d003a78b936e3280103cd9a81cc5a75 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Wed, 16 Mar 2016 16:51:24 +0000 Subject: [PATCH] Move Brewfile to .Brewfile. --- Brewfile => .Brewfile | 0 bin/software-install | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename Brewfile => .Brewfile (100%) diff --git a/Brewfile b/.Brewfile similarity index 100% rename from Brewfile rename to .Brewfile diff --git a/bin/software-install b/bin/software-install index cefb3d4..f8c8f80 100755 --- a/bin/software-install +++ b/bin/software-install @@ -48,7 +48,7 @@ function install_Darwin_software { # Run brew bundle if there's a newer version of Brewfile #------------------------------- if [ ~/Brewfile -nt ~/.Brewfile.updated ]; then - ( cd ~ && brew bundle && touch ~/.Brewfile.updated ) + ( brew bundle --global && touch ~/.Brewfile.updated ) fi #------------------------------- @@ -57,7 +57,7 @@ function install_Darwin_software { #------------------------------- brew upgrade brew cleanup - ( cd ~ && brew bundle check ) || ( cask-upgrade -y && cask-tidy ) + ( brew bundle --global check ) || ( cask-upgrade -y && cask-tidy ) brew cask cleanup #------------------------------- }