From f150671a83d15ffbcfe18e813dd88218aca6eab6 Mon Sep 17 00:00:00 2001 From: JeanOUINA Date: Thu, 29 Apr 2021 16:41:11 +0200 Subject: [PATCH] fix compile --- scripts/compile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/compile.js b/scripts/compile.js index ee63b8d..0bee658 100644 --- a/scripts/compile.js +++ b/scripts/compile.js @@ -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, "..");