Skip to content

Commit

Permalink
Merge pull request #282 from radarhere/deployment
Browse files Browse the repository at this point in the history
Fixed setting MACOSX_DEPLOYMENT_TARGET
  • Loading branch information
radarhere committed Apr 8, 2022
2 parents e304543 + 6470199 commit fd9f833
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit fd9f833

Please sign in to comment.