summary refs log tree commit diff
path: root/bundle/scripts/build.js
diff options
context:
space:
mode:
authorMaddy <ty.carlier@gmail.com>2021-10-12 17:05:24 +1100
committerMaddy <ty.carlier@gmail.com>2021-10-12 17:05:24 +1100
commit222767591e1a059fbc5327ee0d7fc8bb6b793398 (patch)
tree32e412ac7abb0aabde42d61b5a9ce25f063830c2 /bundle/scripts/build.js
parentMerge pull request #443 from Mr2u/master (diff)
downloadserver-222767591e1a059fbc5327ee0d7fc8bb6b793398.tar.xz
...actually fix windows usernames breaking npm run setup ( I forgot to quote second argument :/ )
Diffstat (limited to 'bundle/scripts/build.js')
-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,