chore(nx/ci): display output of signing

pull/1773/head
Elian Doran 2025-04-27 22:05:09 +07:00
parent dbad4fce36
commit eab98e23c0
No known key found for this signature in database
1 changed files with 2 additions and 1 deletions

@ -10,5 +10,6 @@ module.exports = function (filePath) {
const command = `${WINDOWS_SIGN_EXECUTABLE} --executable "${filePath}"`;
console.log(`[Sign] ${command}`);
child_process.execSync(command);
const output = child_process.execSync(command);
console.log(`[Sign] ${output}`);
}