...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( execSync(
"node \"" + "node \"" +
path.join(__dirname, "..", "node_modules", "typescript", "lib", "tsc.js") + path.join(__dirname, "..", "node_modules", "typescript", "lib", "tsc.js") +
"\" -p " + "\" -p \"" +
path.join(__dirname, ".."), path.join(__dirname, "..") + "\"",
{ {
cwd: path.join(__dirname, ".."), cwd: path.join(__dirname, ".."),
shell: true, shell: true,