mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-10 10:22:29 +08:00
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:
parent
6218ae6cd7
commit
9fe37465c7
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user