Disable failures related to the notarisation

This commit is contained in:
Dmitry Vedenko 2024-02-29 22:49:12 +03:00
parent e807b92748
commit eb9b5aea56
No known key found for this signature in database
GPG Key ID: F4C37A6204F983A2
2 changed files with 3 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -134,7 +134,8 @@ async function notarizeDMG(dmgPath, notarizationUser, notarizationPassword, nota
helpers.log(notarizationLog.stdout);
if (parsedResult["status"] != "Accepted") {
throw Error(`Notarization failed: ${parsedResult["status"]}`);
//throw Error(`Notarization failed: ${parsedResult["status"]}`);
helpers.log(`Notarization failed: ${parsedResult["status"]}`);
}
await helpers.execWithLog('xcrun', ["stapler", "staple", dmgPath]);