We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6c2dde commit e36d801Copy full SHA for e36d801
1 file changed
scripts/winbundle.js
@@ -70,7 +70,7 @@ async.series([
70
},
71
cb => {
72
console.log("Building executable");
73
- const code = spawnSync('nexe.cmd', ['index.js', '-t', 'windows-x64-12.16.3', '-o', 'nodeodx.exe'], { stdio: "pipe"}).status;
+ const code = spawnSync('nexe.cmd', ['index.js', '-t', 'windows-x64-14.15.3', '-o', 'nodeodx.exe'], { stdio: "pipe"}).status;
74
75
if (code === 0) cb();
76
else cb(new Error(`nexe returned non-zero error code: ${code}`));
0 commit comments