-
Notifications
You must be signed in to change notification settings - Fork 548
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding check for empty $REQUEST_UUID on Mac builds
- Loading branch information
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,6 +70,11 @@ pat='RequestUUID = (.*)' | |
REQUEST_UUID="${BASH_REMATCH[1]}" | ||
echo " RequestUUID Found: $REQUEST_UUID" | ||
|
||
if [ "$REQUEST_UUID" == "" ]; then | ||
echo "Failed to locate REQUEST_UUID, exiting with error." | ||
exit 1 | ||
fi | ||
|
||
echo "Check Notarization Progress... (list recent notarization records)" | ||
xcrun altool --notarization-history 0 -u "[email protected]" -p "@keychain:NOTARIZE_AUTH" | head -n 10 | ||
|
||
|