build(electron-forge): use double quotes for the buildPath in afterPrune

attempt to fix failing Windows build in CI, which uses cmd shell, which apparently treats single apostrophes differently
This commit is contained in:
Panagiotis Papadopoulos 2025-03-27 09:35:48 +01:00
parent 6218ae6cd7
commit 9fe37465c7

View File

@ -47,7 +47,7 @@ module.exports = {
try {
const cleanupNodeModulesScript = path.join(buildPath, "bin", "cleanupNodeModules.ts");
// we don't have access to any devDeps like 'tsx' here, so use the built-in '--experimental-strip-types' flag instead
const command = `node --experimental-strip-types ${cleanupNodeModulesScript} '${buildPath}' --skip-prune-dev-deps`;
const command = `node --experimental-strip-types ${cleanupNodeModulesScript} "${buildPath}" --skip-prune-dev-deps`;
// execSync throws, if above returns any non-zero exit code
execSync(command);
callback()