We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a283287 commit be561a6Copy full SHA for be561a6
platform.py
@@ -323,7 +323,8 @@ def _handle_existing_tool(
323
tool_base_name = os.path.basename(paths['tool_path'])
324
packages_dir = os.path.dirname(paths['tool_path'])
325
326
- # Remove similar directories with version suffixes FIRST (e.g., xtensa.12232)
+ # Remove similar directories with version suffixes FIRST (e.g., xtensa@src, xtensa.12232)
327
+ safe_remove_directory_pattern(packages_dir, f"{tool_base_name}@*")
328
safe_remove_directory_pattern(packages_dir, f"{tool_base_name}.*")
329
330
# Then remove the main tool directory (if it still exists)
0 commit comments