summaryrefslogtreecommitdiff
path: root/modules/mono
diff options
context:
space:
mode:
authorPaul Joannon <hello@pauljoannon.com>2023-02-16 11:45:33 +0100
committerPaul Joannon <hello@pauljoannon.com>2023-02-16 11:45:33 +0100
commit5e3d114829db444c9baac2c8c2aa4fb36cb12acc (patch)
tree2b54f70251ce9f67d19ab2074448a3ad54e059aa /modules/mono
parent953383328af17e8c9fd6359285c12617cb22f636 (diff)
Clicking "Clean solution" should clean, not build
Diffstat (limited to 'modules/mono')
-rw-r--r--modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs b/modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs
index ed3a4c6e26..6c5c61acb9 100644
--- a/modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs
+++ b/modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs
@@ -302,7 +302,7 @@ namespace GodotTools.Build
public static bool CleanProjectBlocking(
[DisallowNull] string configuration,
[AllowNull] string platform = null
- ) => CleanProjectBlocking(CreateBuildInfo(configuration, platform, rebuild: false));
+ ) => CleanProjectBlocking(CreateBuildInfo(configuration, platform, rebuild: false, onlyClean: true));
public static bool PublishProjectBlocking(
[DisallowNull] string configuration,