Skip to content
Snippets Groups Projects
Commit b58fb175 authored by Andrey Lihatskiy's avatar Andrey Lihatskiy
Browse files

SL-15585 Improved notarization error handling

parent 4d15f18d
No related branches found
No related tags found
No related merge requests found
...@@ -36,8 +36,12 @@ if [ -f "$CONFIG_FILE" ]; then ...@@ -36,8 +36,12 @@ if [ -f "$CONFIG_FILE" ]; then
if [["$status" == "success"]]; then if [["$status" == "success"]]; then
xcrun stapler staple "$app_file" xcrun stapler staple "$app_file"
elif [["$status" == "invalid"]]; then elif [["$status" == "invalid"]]; then
echo "Notarization error: failed to process the app file"
exit 1 exit 1
fi fi
elif
echo "Notarization error: couldn't get request UUID"
exit 1
fi fi
fi fi
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment