summary refs log tree commit diff
path: root/bundle
diff options
context:
space:
mode:
authorSamuel <34555296+Flam3rboy@users.noreply.github.com>2021-10-12 13:07:49 +0200
committerGitHub <noreply@github.com>2021-10-12 13:07:49 +0200
commit3c36237005f5264c0563b73e98c1b60fe401d490 (patch)
treedea18a11f50c6ec3ad3386e0d70a9916d1263a37 /bundle
parentMerge pull request #443 from Mr2u/master (diff)
parent...actually fix windows usernames breaking npm run setup ( I forgot to quote ... (diff)
downloadserver-3c36237005f5264c0563b73e98c1b60fe401d490.tar.xz
Merge pull request #444 from Mr2u/master
Diffstat (limited to 'bundle')
-rw-r--r--bundle/scripts/build.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundle/scripts/build.js b/bundle/scripts/build.js
index e8eb24b8..dfbaec15 100644
--- a/bundle/scripts/build.js
+++ b/bundle/scripts/build.js
@@ -36,8 +36,8 @@ console.log(
 	execSync(
 		"node \"" +
 			path.join(__dirname, "..", "node_modules", "typescript", "lib", "tsc.js") +
-			"\" -p " +
-			path.join(__dirname, ".."),
+			"\" -p \"" +
+			path.join(__dirname, "..") + "\"",
 		{
 			cwd: path.join(__dirname, ".."),
 			shell: true,