fix windows builds

This commit is contained in:
2026-01-10 17:51:30 -06:00
parent 7a419f96ee
commit b009757253
6 changed files with 52 additions and 22 deletions

View File

@@ -98,7 +98,7 @@ app.on("open-url", (event, url) => {
});
function verifyBackendIntegrity(exeDir) {
const manifestPath = path.join(__dirname, "backend-manifest.json");
const manifestPath = path.join(exeDir, "backend-manifest.json");
if (!fs.existsSync(manifestPath)) {
log("Backend integrity manifest missing, skipping check.");
return { ok: true, issues: ["Manifest missing"] };