chore(nx/ci): display output of signing

This commit is contained in:
Elian Doran 2025-04-27 22:05:09 +03:00
parent dbad4fce36
commit eab98e23c0
No known key found for this signature in database

View File

@ -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}`);
}