mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 12:41:08 +08:00
Add some sleep to mac_notarize.sh
Notarization fails because you can't check on its status right away. Add a sleep to address this.
This commit is contained in:
parent
ba44c4242f
commit
aad64ccdc0
|
@ -47,6 +47,10 @@ NOTARIZE_UUID=$(xcrun altool --notarize-app \
|
|||
test -z "$NOTARIZE_UUID" && cat "$LOGFILE" && die "Could not get RequestUUID"
|
||||
echo "RequestUUID: $NOTARIZE_UUID"
|
||||
|
||||
# notarization-info doesn't always know about our request immediately.
|
||||
echo "Giving notarization-info a chance to catch up..."
|
||||
sleep 15
|
||||
|
||||
success=0
|
||||
for i in $(seq 20); do
|
||||
echo "Checking progress..."
|
||||
|
|
Loading…
Reference in New Issue
Block a user