summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBror Winther <brorwinther@gmail.com>2021-08-22 23:42:34 +0200
committerGitHub <noreply@github.com>2021-08-22 14:42:34 -0700
commitaa28335651a5a76d89054509186500c3af6147e7 (patch)
tree123d4c412e243e64fa928fcbd72710455dca798f
parent5319727b7086f9e73e423054eed4886d8de2750b (diff)
Add fix for brew upgrade (#12921)0.13.37
Add a fix for `brew upgrade` so only formulae is upgraded and not casks
-rwxr-xr-xutil/install/macos.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/install/macos.sh b/util/install/macos.sh
index 3ce8ddbfd3..870b4bec94 100755
--- a/util/install/macos.sh
+++ b/util/install/macos.sh
@@ -9,7 +9,7 @@ _qmk_install_prepare() {
return 1
fi
- brew update && brew upgrade --ignore-pinned
+ brew update && brew upgrade --formulae --ignore-pinned
}
_qmk_install() {