Skip to content

Commit

Permalink
fix(ci): ignore brew remove failures
Browse files Browse the repository at this point in the history
  • Loading branch information
fdintino committed Jul 1, 2024
1 parent ffeb2ef commit 729c896
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wheelbuild/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ function build_libavif {
LIBAVIF_CMAKE_FLAGS=()

if [ -n "$IS_MACOS" ]; then
brew remove --ignore-dependencies webp jpeg-xl aom composer gd imagemagick libavif libheif php
for pkg in webp jpeg-xl aom composer gd imagemagick libavif libheif php; do
brew remove --ignore-dependencies $pkg ||:
fi
which cmake
cmake --version
Expand Down

0 comments on commit 729c896

Please sign in to comment.