From 222767591e1a059fbc5327ee0d7fc8bb6b793398 Mon Sep 17 00:00:00 2001 From: Maddy Date: Tue, 12 Oct 2021 17:05:24 +1100 Subject: [PATCH] ...actually fix windows usernames breaking npm run setup ( I forgot to quote second argument :/ ) --- bundle/scripts/build.js | 4 ++-- 1 file 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,