Merge pull request #282 from radarhere/deployment

Fixed setting MACOSX_DEPLOYMENT_TARGET
This commit is contained in:
Andrew Murray 2022-04-08 18:39:26 +10:00 committed by GitHub
commit fd9f83364a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,9 +6,9 @@ if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew remove --ignore-dependencies webp zstd xz libtiff libxcb curl php
if [[ "$PLAT" == "arm64" ]]; then
MACOSX_DEPLOYMENT_TARGET="11.0"
export MACOSX_DEPLOYMENT_TARGET="11.0"
else
MACOSX_DEPLOYMENT_TARGET="10.10"
export MACOSX_DEPLOYMENT_TARGET="10.10"
fi
fi