From e2a79c9f09880df649999ab028295fb434553301 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 3 Jan 2025 16:38:08 +0000 Subject: [PATCH] [macos] Fix update-brewfile --- macos/.config/shell-common/brewfile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macos/.config/shell-common/brewfile.sh b/macos/.config/shell-common/brewfile.sh index 4e7193a..6dd47dc 100644 --- a/macos/.config/shell-common/brewfile.sh +++ b/macos/.config/shell-common/brewfile.sh @@ -1,4 +1,4 @@ # Updates Homebrew installation from the Brewfile function update-brewfile() { - brew bundle check --file ~/.config/Brewfile && brew bundle --file ~/.config/Brewfile + brew bundle check --file ~/.config/Brewfile || brew bundle --file ~/.config/Brewfile }