Browse Source

Clicking "Clean solution" should clean, not build

Paul Joannon 2 years ago
parent
commit
5e3d114829
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs

+ 1 - 1
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,