Skip to content

Commit

Permalink
use || and not &&
Browse files Browse the repository at this point in the history
  • Loading branch information
vot4anto committed Oct 10, 2024
1 parent b35b0a1 commit 7dc9769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion env_vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ OPENSSL_DOWNLOAD_URL=https://www.openssl.org/source/
OPENSSL_ROOT=openssl-1.1.1w
OPENSSL_HASH=cf3098950cb4d853ad95c0841f1f9c6d3dc102dccfcacd521d93925208b76ac8
export MACOSX_DEPLOYMENT_TARGET=11.0
if [ -z "$IS_OSX" ] && [ "$PLAT" == x86_64 ]; then
if [ -z "$IS_OSX" ] || [ "$PLAT" == x86_64 ]; then
export MACOSX_DEPLOYMENT_TARGET=13.0
fi
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
Expand Down

0 comments on commit 7dc9769

Please sign in to comment.