42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
import { spawn } from 'node:child_process';
|
|||
|
|
import fs from 'node:fs';
|
||
|
|
import path from 'node:path';
|
||
|
|
|
||
|
|
const env = { ...process.env };
|
||
|
|
|
||
|
|
if (process.platform === 'win32' && !env.CSC_LINK && !env.WINDOWS_CSC_LINK) {
|
||
|
|
env.CSC_IDENTITY_AUTO_DISCOVERY = 'false';
|
||
|
|
console.log('[electron] Windows code signing disabled; building unsigned installer.');
|
||
|
|
}
|
||
|
|
|
||
|
|
const bunBinaryCandidates = [
|
||
|
|
process.env.npm_execpath,
|
||
|
|
process.env.BUN_INSTALL ? path.join(process.env.BUN_INSTALL, 'bin', process.platform === 'win32' ? 'bun.exe' : 'bun') : null,
|
||
|
|
process.platform === 'win32' ? 'bun.exe' : 'bun',
|
||
|
|
].filter(Boolean);
|
||
|
|
|
||
|
|
const bunBinary = bunBinaryCandidates.find((candidate) => {
|
||
|
|
if (path.basename(candidate).toLowerCase().startsWith('bun')) {
|
||
|
|
return candidate === 'bun' || candidate === 'bun.exe' || fs.existsSync(candidate);
|
||
|
|
}
|
||
|
|
return false;
|
||
|
|
}) || (process.platform === 'win32' ? 'bun.exe' : 'bun');
|
||
|
|
|
||
|
|
const child = spawn(bunBinary, ['x', 'electron-builder', ...process.argv.slice(2)], {
|
||
|
|
env,
|
||
|
|
stdio: 'inherit',
|
||
|
|
});
|
||
|
|
|
||
|
|
child.on('exit', (code, signal) => {
|
||
|
|
if (signal) {
|
||
|
|
process.kill(process.pid, signal);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
process.exit(code ?? 1);
|
||
|
|
});
|
||
|
|
|
||
|
|
child.on('error', (error) => {
|
||
|
|
console.error('[electron] failed to start electron-builder:', error);
|
||
|
|
process.exit(1);
|
||
|
|
});
|