diff options
author | Bror Winther <brorwinther@gmail.com> | 2021-08-22 23:42:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-22 14:42:34 -0700 |
commit | aa28335651a5a76d89054509186500c3af6147e7 (patch) | |
tree | 123d4c412e243e64fa928fcbd72710455dca798f | |
parent | 5319727b7086f9e73e423054eed4886d8de2750b (diff) | |
download | qmk_firmware-aa28335651a5a76d89054509186500c3af6147e7.tar.gz qmk_firmware-aa28335651a5a76d89054509186500c3af6147e7.zip |
Add fix for brew upgrade (#12921)
Add a fix for `brew upgrade` so only formulae is upgraded and not casks
-rwxr-xr-x | util/install/macos.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/install/macos.sh b/util/install/macos.sh index 3ce8ddbfd..870b4bec9 100755 --- a/util/install/macos.sh +++ b/util/install/macos.sh | |||
@@ -9,7 +9,7 @@ _qmk_install_prepare() { | |||
9 | return 1 | 9 | return 1 |
10 | fi | 10 | fi |
11 | 11 | ||
12 | brew update && brew upgrade --ignore-pinned | 12 | brew update && brew upgrade --formulae --ignore-pinned |
13 | } | 13 | } |
14 | 14 | ||
15 | _qmk_install() { | 15 | _qmk_install() { |