fix compile
This commit is contained in:
parent
ee4e1a5ba5
commit
f150671a83
|
@ -4,7 +4,7 @@ const child_process = require("child_process")
|
|||
|
||||
const spawn = (...args) => {
|
||||
if(process.platform === "win32")args[0] += ".cmd"
|
||||
return child_process.spawnSync(...args)
|
||||
return child_process.spawn(...args)
|
||||
}
|
||||
|
||||
const PROJECT_DIR = resolve(__dirname, "..");
|
||||
|
|
Loading…
Reference in New Issue