We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15b4562 commit 285500dCopy full SHA for 285500d
.github/scripts/setup-env.sh
@@ -27,9 +27,8 @@ if [[ "${OS_TYPE}" == "macos" && $(uname -m) == x86_64 ]]; then
27
# The x86 macOS runners, e.g. the GitHub Actions native "macos-12" runner, has some JPEG and PNG libraries
28
# installed by default that interfere with our build. We uninstall them here and use the one from conda below.
29
IMAGE_LIBS=$(brew list | grep -E "jpeg|png")
30
- echo "${IMAGE_LIBS}"
31
- for lib in "${IMAGE_LIBS}"; do
32
- brew uninstall --ignore-dependencies --force "${lib}" || true
+ for lib in $IMAGE_LIBS; do
+ brew uninstall --ignore-dependencies --force "${lib}"
33
done
34
echo '::endgroup::'
35
fi
0 commit comments