From 5ad01ef2c92a481814be826e23088f6d3b122604 Mon Sep 17 00:00:00 2001 From: sowle Date: Mon, 5 Jul 2021 16:18:48 +0300 Subject: [PATCH] build: macos script minor fix --- utils/build_script_mac_osx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/build_script_mac_osx.sh b/utils/build_script_mac_osx.sh index d19e0ca1..bb70d5fc 100755 --- a/utils/build_script_mac_osx.sh +++ b/utils/build_script_mac_osx.sh @@ -206,7 +206,7 @@ for i in {1..10}; do NOTARIZE_OUTPUT=$( cat $tmpfile ) rm $tmpfile NOTARIZATION_LOG_URL=$(echo "$NOTARIZE_OUTPUT" | sed -n "s/.*LogFileURL\: \([[:graph:]]*\).*/\1/p") - if [ $(#NOTARIZATION_LOG_URL) -ge 30 ]; then + if [ ${#NOTARIZATION_LOG_URL} -ge 30 ]; then success=1 curl -L $NOTARIZATION_LOG_URL break