From 89290d53afd431356892cbc1b9d0abdd4bb7dc5b Mon Sep 17 00:00:00 2001 From: Jan Laupetin Date: Thu, 30 Oct 2025 22:04:42 +0100 Subject: [PATCH] chore: only call RawTemplater with --no-color arg --- tools/scripts/raw.lua | 1 + tools/scripts/source_templating.lua | 1 + 2 files changed, 2 insertions(+) diff --git a/tools/scripts/raw.lua b/tools/scripts/raw.lua index 278cc86c..645833aa 100644 --- a/tools/scripts/raw.lua +++ b/tools/scripts/raw.lua @@ -60,6 +60,7 @@ function Raw:project() } buildcommands { '"' .. TargetDirectoryBuildTools .. '/' .. ExecutableByOs('RawTemplater') .. '"' + .. " --no-color" .. " -o %{cfg.targetdir}/build/raw/%{file.reldirectory}" .. " --build-log \"%{prj.location}/build/%{file.relpath}.log\"" .. " %{file.relpath}" diff --git a/tools/scripts/source_templating.lua b/tools/scripts/source_templating.lua index a87d4d53..b8e0fef9 100644 --- a/tools/scripts/source_templating.lua +++ b/tools/scripts/source_templating.lua @@ -37,6 +37,7 @@ function useSourceTemplating(projectName) } buildcommands { '"' .. TargetDirectoryBuildTools .. '/' .. ExecutableByOs('RawTemplater') .. '"' + .. ' --no-color' .. ' -o "%{prj.location}/"' .. " %{file.relpath}" }