aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2019-05-31 10:27:34 -0700
committerGerald Combs <gerald@wireshark.org>2019-05-31 17:29:54 +0000
commit23ec0666c5dd8424b95091d190b3aca1df755d57 (patch)
treea3e33afedbf643a84467fef509946ccf17a4b24a /packaging
parent237ec1349f869b4a03282168b5c99d1bcce286ac (diff)
macOS: Notarization updates.
Increase our timeout from 10 minutes to 20. Fixup our ID formatting. Change-Id: I143c08880de4f285bd0bc6dbf6619d565ef97b3a Reviewed-on: https://code.wireshark.org/review/33434 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/macosx/notarize-dmg.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/macosx/notarize-dmg.sh b/packaging/macosx/notarize-dmg.sh
index 75585b2387..760368bd96 100755
--- a/packaging/macosx/notarize-dmg.sh
+++ b/packaging/macosx/notarize-dmg.sh
@@ -6,7 +6,7 @@
# https://developer.apple.com/documentation/security/notarizing_your_app_before_distribution
# https://developer.apple.com/documentation/security/notarizing_your_app_before_distribution/customizing_the_notarization_workflow
-bundle_id="org.wireshark.dmg.$( printf "%x" $RANDOM )"
+bundle_id="org.wireshark.dmg.$( printf "%04x" $RANDOM )"
# Parse command line arguments
while getopts u: OPTCHAR
@@ -73,7 +73,7 @@ eval_info_cmd=(xcrun altool \
--password "@keychain:${generic_pw_service}" \
)
-for try in {1..40} ; do
+for try in {1..80} ; do
printf "\\nWaiting 15s \xe2\x80\xa6 "
sleep 15
echo "done. Checking status ($try of 40)"