diff options
author | Samuel <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-12 07:27:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 07:27:25 +0200 |
commit | c6055a981993986ef46816bc1363ed9f4867457b (patch) | |
tree | 07f3bd4530129021e47e23b75d6c873c633c80cf | |
parent | Merge pull request #430 from Thesourtimes/master (diff) | |
parent | npm run build on Windows with usernames containing spaces fails, fixed by esc... (diff) | |
download | server-c6055a981993986ef46816bc1363ed9f4867457b.tar.xz |
Merge pull request #443 from Mr2u/master
-rw-r--r-- | bundle/scripts/build.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bundle/scripts/build.js b/bundle/scripts/build.js index a9798eff..e8eb24b8 100644 --- a/bundle/scripts/build.js +++ b/bundle/scripts/build.js @@ -34,9 +34,9 @@ console.log("Compiling src files ..."); console.log( execSync( - "node " + + "node \"" + path.join(__dirname, "..", "node_modules", "typescript", "lib", "tsc.js") + - " -p " + + "\" -p " + path.join(__dirname, ".."), { cwd: path.join(__dirname, ".."), |