Notes/apps/desktop/electron-forge/sign-windows.cjs

27 lines
815 B
JavaScript
Raw Normal View History

2025-03-23 23:22:22 +02:00
const child_process = require("child_process");
const fs = require("fs");
const { default: path } = require("path");
2025-03-23 23:22:22 +02:00
module.exports = function (filePath) {
const { WINDOWS_SIGN_EXECUTABLE } = process.env;
if (!WINDOWS_SIGN_EXECUTABLE) {
console.warn("[Sign] Skip signing due to missing environment variable.");
return;
}
console.log(filePath, fs.realpathSync(filePath));
filePath = fs.realpathSync(filePath);
console.log(fs.readFileSync(filePath).subarray(0, 100));
const command = `${WINDOWS_SIGN_EXECUTABLE} --executable "${filePath}"`;
2025-03-24 12:05:46 +02:00
console.log(`[Sign] ${command}`);
try {
child_process.execSync(command);
} catch (e) {
console.error("[Sign] Got error while signing " + e.output.toString("utf-8"));
process.exit(1);
}
2025-03-23 23:22:22 +02:00
}