log signing errors

This commit is contained in:
Eugene
2025-10-16 00:42:08 +02:00
parent de65a724f3
commit dcc93fecc9
+6
View File
@@ -45,6 +45,12 @@ builder({
console.log(out.toString())
} catch (e) {
console.error(`Failed to sign ${configuration.path}`)
if (e.stdout) {
console.error('stdout:', e.stdout.toString())
}
if (e.stderr) {
console.error('stderr:', e.stderr.toString())
}
console.error(e)
process.exit(1)
}