From 6cb335fe3297e0ae3ffa74db503aa19ac74327fe Mon Sep 17 00:00:00 2001 From: mauro-balades Date: Wed, 2 Oct 2024 22:46:18 +0200 Subject: [PATCH] Fix macOS version check in codesign.bash --- build/codesign/codesign.bash | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build/codesign/codesign.bash b/build/codesign/codesign.bash index d3c66027e..7dce57163 100644 --- a/build/codesign/codesign.bash +++ b/build/codesign/codesign.bash @@ -50,11 +50,11 @@ if [ ! -x ${SWVERS} ]; then fi # Require macOS 10.14 or newer. -OSVERSION=`${SWVERS} -productVersion|sed -En 's/[0-9]+\.([0-9]+)\.[0-9]+/\1/p'`; -if [ ${OSVERSION} \< 14 ]; then - echo "ERROR: macOS 10.14 or later is required" - exit -1 -fi +#OSVERSION=`${SWVERS} -productVersion|sed -En 's/[0-9]+\.([0-9]+)\.[0-9]+/\1/p'`; +#if [ ${OSVERSION} \< 14 ]; then +# echo "ERROR: macOS 10.14 or later is required" +# exit -1 +#fi while getopts "a:i:b:o:p:" opt; do case ${opt} in