diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-07-14 23:35:45 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-07-14 23:35:45 +0300 |
commit | b58fb175829423412fd7ecab8b3f49ee474f92cc (patch) | |
tree | 49e0f65e71becf3c17d34633b22217c06bf7cfb7 /indra/newview/installers/darwin | |
parent | 4d15f18d924b403fd40ae737b9478aadc345a56a (diff) |
SL-15585 Improved notarization error handling
Diffstat (limited to 'indra/newview/installers/darwin')
-rwxr-xr-x | indra/newview/installers/darwin/apple-notarize.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/installers/darwin/apple-notarize.sh b/indra/newview/installers/darwin/apple-notarize.sh index b953af81af..be0f8a5717 100755 --- a/indra/newview/installers/darwin/apple-notarize.sh +++ b/indra/newview/installers/darwin/apple-notarize.sh @@ -36,8 +36,12 @@ if [ -f "$CONFIG_FILE" ]; then if [["$status" == "success"]]; then xcrun stapler staple "$app_file" elif [["$status" == "invalid"]]; then + echo "Notarization error: failed to process the app file" exit 1 fi + elif + echo "Notarization error: couldn't get request UUID" + exit 1 fi fi fi |