Skip to content

Commit b9b159f

Browse files
committed
Missed two + on a copy past. They are now removed.
1 parent 19eab25 commit b9b159f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MCPForUnity/Editor/Helpers/ServerInstaller.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -564,8 +564,8 @@ private static void CleanupStaleToolFolders(string destToolsDir, HashSet<string>
564564
}
565565

566566
// Only manage per-folder tool installs created by this feature
567-
+ if (!subdirName.EndsWith("_MCPForUnityTools", StringComparison.OrdinalIgnoreCase))
568-
+ goto NextSubdir;
567+
if (!subdirName.EndsWith("_MCPForUnityTools", StringComparison.OrdinalIgnoreCase))
568+
goto NextSubdir;
569569

570570
// Check if this subdirectory corresponds to an active tools folder
571571
if (!activeFolderIdentifiers.Contains(subdirName))

0 commit comments

Comments
 (0)