chore(sign): use sign code known to work

This commit is contained in:
Elian Doran 2025-05-01 21:49:22 +03:00
parent ebab12dcc2
commit de2de04f35
No known key found for this signature in database

View File

@ -1,38 +1,29 @@
const child_process = require("child_process");
const path = require("path");
const fs = require("fs");
const { default: path } = require("path");
module.exports = function (filePath) {
const { WINDOWS_SIGN_EXECUTABLE } = process.env;
function sign(sourcePath) {
const stats = fs.lstatSync(filePath);
console.log(filePath, stats);
if (!WINDOWS_SIGN_EXECUTABLE) {
console.warn("[Sign] Skip signing due to missing environment variable.");
return;
}
if (path.extname(sourcePath) !== ".exe") {
console.warn("[Sign] Unsupported extension for signing: ", sourcePath);
return;
const outputDir = path.join(__dirname, "sign");
console.log("Output dir is ", path.resolve(outputDir));
if (!fs.existsSync(outputDir)) {
fs.mkdirSync(outputDir);
}
try {
const command = `${WINDOWS_SIGN_EXECUTABLE} --executable "${sourcePath}"`;
child_process.execSync(command);
console.log(`[Sign] ${command}: SUCCESS`);
} catch (e) {
console.error(`[Sign] ${command}: FAILED: `, e.output.toString("utf-8"));
printSigningErrorLogs();
}
}
fs.copyFileSync(sourcePath, destPath);
function printSigningErrorLogs() {
const logLocation = path.join(path.dirname(WINDOWS_SIGN_EXECUTABLE), "ev_signer_trilium.err.log");
const command = `${WINDOWS_SIGN_EXECUTABLE} --executable "${filePath}"`;
console.log(`[Sign] ${command}`);
if (!fs.existsSync(logLocation)) {
console.warn("[Sign] No debug log file found.");
return;
const output = child_process.execSync(command);
console.log(`[Sign] ${output}`);
}
const logContent = fs.readFileSync(logLocation, "utf-8");
console.error("[Sign] Debug log content:\n" + logContent);
}
module.exports = sign;