File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -42,17 +42,17 @@ codesign -s "$AC_APPLICATION_IDENTITY" -f -v --timestamp --options runtime "$out
42
42
# Notarize the signed zip file.
43
43
#
44
44
# The notarization process is very fragile and heavily dependent on Apple's
45
- # notarization server not returning server errors, so we retry this step 5
46
- # times with a delay of 30 seconds between each attempt .
45
+ # notarization server not returning server errors, so we retry this step twice
46
+ # with a delay of a minute between attempts .
47
47
rc=0
48
- for i in $( seq 1 5 ) ; do
48
+ for i in $( seq 1 2 ) ; do
49
49
gon " $config " && rc=0 && break || rc=$?
50
50
log " gon exit code: $rc "
51
51
if [ " $i " -lt 5 ]; then
52
52
log
53
- log " Retrying notarization in 30 seconds"
53
+ log " Retrying notarization in 60 seconds"
54
54
log
55
- sleep 30
55
+ sleep 60
56
56
else
57
57
log
58
58
log " Giving up :("
You can’t perform that action at this time.
0 commit comments