From eab98e23c088d12aeb06bd5587ed890018f1749d Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 27 Apr 2025 22:05:09 +0300 Subject: [PATCH] chore(nx/ci): display output of signing --- apps/desktop/electron-forge/sign-windows.cjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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