1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-10 20:52:42 +01:00

...actually fix windows usernames breaking npm run setup ( I forgot to quote second argument :/ )

This commit is contained in:
Maddy 2021-10-12 17:05:24 +11:00
parent ae383aee08
commit 222767591e

View File

@ -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,