1
0
Fork 0
forked from lthn/blockchain

build: macos script minor fix

This commit is contained in:
sowle 2021-07-05 16:18:48 +03:00
parent 7c01ea4052
commit 5ad01ef2c9
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -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