diff --git a/apps/desktop/electron-forge/sign-windows.cjs b/apps/desktop/electron-forge/sign-windows.cjs index 527a27dc6..7cd1db2d7 100644 --- a/apps/desktop/electron-forge/sign-windows.cjs +++ b/apps/desktop/electron-forge/sign-windows.cjs @@ -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}`); } \ No newline at end of file