diff options
author | Maddy <ty.carlier@gmail.com> | 2021-10-12 17:05:24 +1100 |
---|---|---|
committer | Maddy <ty.carlier@gmail.com> | 2021-10-12 17:05:24 +1100 |
commit | c4cf1f4ae45e46ccbceb427f9f4877edb4c9b9de (patch) | |
tree | dea18a11f50c6ec3ad3386e0d70a9916d1263a37 | |
parent | Merge pull request #443 from Mr2u/master (diff) | |
download | server-c4cf1f4ae45e46ccbceb427f9f4877edb4c9b9de.tar.xz |
...actually fix windows usernames breaking npm run setup ( I forgot to quote second argument :/ )
-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 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, |