A change in the MacOS images caused a conflict when upgrading python3.
This change removes oclint first, since that package is the source of
the conflict
Change-Id: I990a7b0eb1f91f51fcc2ad2a0db120af49c7a754
fi
- |
if [[ "$VULKAN_BUILD_TARGET" == "MACOS" ]]; then
- # Install the appropriate MacOS packages
+ # We need to uninstall oclint or we get a gcc conflict when upgrading python
+ brew cask uninstall oclint
+ # We need to upgrade to a newer python
brew upgrade python3
fi
- |