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 #------------------------------- }