diff --git a/apps/desktop/electron-forge/sign-windows.cjs b/apps/desktop/electron-forge/sign-windows.cjs index 44b6787a2..3d7063ff8 100644 --- a/apps/desktop/electron-forge/sign-windows.cjs +++ b/apps/desktop/electron-forge/sign-windows.cjs @@ -18,6 +18,7 @@ module.exports = function (filePath) { try { child_process.execSync(command); } catch (e) { - console.error("[Sign]", e.output.toString("utf-8")); + console.error("[Sign] Got error while signing " + e.output.toString("utf-8")); + process.exit(1); } } \ No newline at end of file