From 5decdb58e8bad6c3fe0e5d737f518b0e9542e86a Mon Sep 17 00:00:00 2001 From: aliciaaevans Date: Tue, 9 Jul 2024 10:22:34 -0400 Subject: [PATCH] fix: osx target version needs minor --- common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.sh b/common.sh index 9b0b450..c7b21f2 100644 --- a/common.sh +++ b/common.sh @@ -5,8 +5,8 @@ platform=$(uname -s) arch=$(uname -m) if [[ "$platform" == "Darwin" ]]; then if [[ "$arch" == "arm64" ]]; then - export MACOSX_DEPLOYMENT_TARGET=11 - export MACOSX_SDK_VERSION=11 + export MACOSX_DEPLOYMENT_TARGET=11.0 + export MACOSX_SDK_VERSION=11.0 elif [[ "$arch" == 'x86_64' ]]; then export MACOSX_DEPLOYMENT_TARGET=10.13 export MACOSX_SDK_VERSION=10.13