diff options
author | Hein-Pieter van Braam <hp@tmm.cx> | 2019-01-08 01:44:54 +0100 |
---|---|---|
committer | Hein-Pieter van Braam <hp@tmm.cx> | 2019-01-08 01:44:54 +0100 |
commit | ee0c4a97b3423f9fdbc88cc5d7129bab43347775 (patch) | |
tree | a62d79b6eb4e48955a1f8243cdc52c4608a19b8e /modules/mono/editor/GodotSharpTools/Editor | |
parent | f8eaa2fc596f33fb18d12b6a4b6d0a53d1baeee8 (diff) |
Use 'release_debug' for mono export templates
This fixes the previously wrong PR
Because we don't actually ship 'debug' templates to users make sure
the mono exporter picks the correct 'data' directory for export
templates.
This fixes #24752
Diffstat (limited to 'modules/mono/editor/GodotSharpTools/Editor')
-rw-r--r-- | modules/mono/editor/GodotSharpTools/Editor/GodotSharpExport.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotSharpTools/Editor/GodotSharpExport.cs b/modules/mono/editor/GodotSharpTools/Editor/GodotSharpExport.cs index 5fd708d539..e45dd2025b 100644 --- a/modules/mono/editor/GodotSharpTools/Editor/GodotSharpExport.cs +++ b/modules/mono/editor/GodotSharpTools/Editor/GodotSharpExport.cs @@ -30,7 +30,7 @@ namespace GodotSharpTools.Editor throw new NotSupportedException("Target platform not supported"); } - templateDirName += debug ? ".debug" : ".release"; + templateDirName += debug ? ".release_debug" : ".release"; string templateDirPath = Path.Combine(GetTemplatesDir(), templateDirName); |