1
0
mirror of https://github.com/Lightcord/Lightcord.git synced 2025-04-12 00:55:40 +02:00

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

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