chore(sign): change log format

This commit is contained in:
Elian Doran 2025-05-01 21:49:10 +03:00
parent 18fff2823c
commit ebab12dcc2
No known key found for this signature in database

View File

@ -15,10 +15,10 @@ function sign(sourcePath) {
try {
const command = `${WINDOWS_SIGN_EXECUTABLE} --executable "${sourcePath}"`;
console.log(`[Sign] ${command}`);
child_process.execSync(command);
child_process.execSync(command);
console.log(`[Sign] ${command}: SUCCESS`);
} catch (e) {
console.error("[Sign] Got error while signing " + e.output.toString("utf-8"));
console.error(`[Sign] ${command}: FAILED: `, e.output.toString("utf-8"));
printSigningErrorLogs();
}
}