chore(nx/forge): report error when signing

This commit is contained in:
Elian Doran 2025-04-28 20:20:16 +03:00
parent 2ccbc100ec
commit d6c67b00e6
No known key found for this signature in database

View File

@ -18,6 +18,7 @@ module.exports = function (filePath) {
try { try {
child_process.execSync(command); child_process.execSync(command);
} catch (e) { } catch (e) {
console.error("[Sign]", e.output.toString("utf-8")); console.error("[Sign] Got error while signing " + e.output.toString("utf-8"));
process.exit(1);
} }
} }