Browse Source

Add fix for brew upgrade (#12921)

Add a fix for `brew upgrade` so only formulae is upgraded and not casks
pull/14122/head 0.13.37
Bror Winther 2 years ago
committed by GitHub
parent
commit
aa28335651
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      util/install/macos.sh

+ 1
- 1
util/install/macos.sh View File

@ -9,7 +9,7 @@ _qmk_install_prepare() {
return 1 return 1
fi fi
brew update && brew upgrade --ignore-pinned
brew update && brew upgrade --formulae --ignore-pinned
} }
_qmk_install() { _qmk_install() {


Loading…
Cancel
Save