summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/editor
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-03-04 13:32:38 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-03-04 13:32:38 +0100
commit5d3369e095ff0a89e11dc24b038076e969473304 (patch)
treeab2b124ea4b05619fa0b70f42ade2544027b628a /modules/gdscript/editor
parent1598af566803f06d852b229c365aaf8a359edd8e (diff)
parent0ce9b6fd1d72139921ad3a20cb1933eb35873eb8 (diff)
downloadredot-engine-5d3369e095ff0a89e11dc24b038076e969473304.tar.gz
Merge pull request #85153 from Repiteo/scons-improve-logs
SCons: Add two new `COMSTR` environment variables
Diffstat (limited to 'modules/gdscript/editor')
-rw-r--r--modules/gdscript/editor/script_templates/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/editor/script_templates/SCsub b/modules/gdscript/editor/script_templates/SCsub
index 2266ef2d01..5db7e3fc3b 100644
--- a/modules/gdscript/editor/script_templates/SCsub
+++ b/modules/gdscript/editor/script_templates/SCsub
@@ -5,7 +5,7 @@ Import("env")
import editor.template_builders as build_template_gd
env["BUILDERS"]["MakeGDTemplateBuilder"] = Builder(
- action=env.Run(build_template_gd.make_templates, "Generating GDScript templates header."),
+ action=env.Run(build_template_gd.make_templates),
suffix=".h",
src_suffix=".gd",
)