We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 819e54a commit d8dcd94Copy full SHA for d8dcd94
src/manage/uninstall_command.py
@@ -106,14 +106,6 @@ def execute(cmd):
106
for _, cleanup in SHORTCUT_HANDLERS.values():
107
if cleanup:
108
cleanup(cmd, [])
109
- # Clean up other lingering directories
110
- LOGGER.info("Purging remaining files")
111
- for d in _iterdir(cmd.install_dir):
112
- if d.is_dir():
113
- LOGGER.verbose("Removing %s", d)
114
- rmtree(d, after_5s_warning=warn_msg.format("remaining files"))
115
- if any(_iterdir(cmd.install_dir)):
116
- LOGGER.warn("Unable to fully remove %s.", cmd.install_dir)
117
LOGGER.debug("END uninstall_command.execute")
118
return
119
0 commit comments