diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-04 13:32:38 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-04 13:32:38 +0100 |
commit | 5d3369e095ff0a89e11dc24b038076e969473304 (patch) | |
tree | ab2b124ea4b05619fa0b70f42ade2544027b628a /modules/gdscript/editor | |
parent | 1598af566803f06d852b229c365aaf8a359edd8e (diff) | |
parent | 0ce9b6fd1d72139921ad3a20cb1933eb35873eb8 (diff) | |
download | redot-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/SCsub | 2 |
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", ) |