We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7df790c commit a518d88Copy full SHA for a518d88
installer/build-mac-dmg.sh
@@ -86,7 +86,7 @@ xcrun altool --notarization-history 0 -u "[email protected]" -p "@keychain:N
86
echo "Check Notarization Info (loop until status detected)"
87
# Wait up to 60 minutes for notarization status to change
88
START=$(date +%s)
89
-while [ $(( "$(date +%s) - 3600" )) -lt "$START" ]; do
+while [ "$(( $(date +%s) - 3600 ))" -lt "$START" ]; do
90
notarize_info=$(xcrun altool --notarization-info "$REQUEST_UUID" -u "[email protected]" -p "@keychain:NOTARIZE_AUTH")
91
echo "$notarize_info"
92
0 commit comments