Skip to content

Commit

Permalink
ci/macOS: overwrite already existing links when installing packages
Browse files Browse the repository at this point in the history
- This commit applies the changes from defa4b1.

Signed-off-by: Adrian Stanea <[email protected]>
  • Loading branch information
Adrian-Stanea authored and AlexandraTrifan committed Nov 25, 2024
1 parent e7f09b4 commit e1575fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CI/appveyor/install_macos_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ brew update
# Check if macOS version and upgrade packages only if the version is greater than macOS 12
if (( $(echo "$(sw_vers -productVersion) > 13.0" | bc -l) )); then
brew upgrade --display-times || true #ignore homebrew upgrade errors
brew install --display-times $PACKAGES
brew install --overwrite --display-times $PACKAGES
else
HOMEBREW_NO_AUTO_UPDATE=1 brew install --display-times $PACKAGES
HOMEBREW_NO_AUTO_UPDATE=1 brew install --overwrite --display-times $PACKAGES
fi

brew search ${QT_FORMULAE}
Expand Down

0 comments on commit e1575fc

Please sign in to comment.