CI: Fix Brew Bundler breaking without prior brew update

This commit is contained in:
PatTheMav 2020-07-29 20:30:57 +02:00
parent dcb085a0f9
commit 07a899413a
No known key found for this signature in database
GPG Key ID: F8BCC3052CE91D29
2 changed files with 2 additions and 0 deletions

View File

@ -49,6 +49,7 @@ jobs:
- name: 'Install prerequisites (Homebrew)'
shell: bash
run: |
brew update --preinstall
brew bundle --file ./CI/scripts/macos/Brewfile
- name: 'Restore Chromium Embedded Framework from cache'
id: cef-cache

View File

@ -103,6 +103,7 @@ install_homebrew_deps() {
exit 1
fi
brew update
brew bundle --file ${CI_SCRIPTS}/Brewfile
}