From 17a21837642cda3a4769f14f61686c6196425e8a Mon Sep 17 00:00:00 2001 From: franklygeorge <54015-franklygeorge@users.noreply.gitgud.io> Date: Sun, 11 Feb 2024 09:43:27 -0500 Subject: [PATCH] System TweeGo path can now have spaces. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index f929437c96d..9a5acbf64d5 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -164,7 +164,7 @@ function tweeCompileCommand() { const modules = [path.join(cfg.dirs.intermediate, "module")]; const moduleArgs = modules.map(fn => `--module=${fn}`); - return `${tweeCompilerExecutable()} --head=${cfg.sources.head} -o ${path.join(cfg.dirs.intermediate, htmlOut)} ${moduleArgs.join(" ")} ${sources.join(" ")}`; + return `"${tweeCompilerExecutable()}" --head=${cfg.sources.head} -o ${path.join(cfg.dirs.intermediate, htmlOut)} ${moduleArgs.join(" ")} ${sources.join(" ")}`; } /** -- GitLab