fix compile

This commit is contained in:
JeanOUINA 2021-04-29 16:41:11 +02:00
parent ee4e1a5ba5
commit f150671a83
No known key found for this signature in database
GPG Key ID: 7387E30D642FF8B7
1 changed files with 1 additions and 1 deletions

View File

@ -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, "..");