Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Don't purge everything anymore
  • Loading branch information
zooba committed Mar 31, 2026
commit d8dcd941e1a14f891356155e21780e697724bd7f
8 changes: 0 additions & 8 deletions src/manage/uninstall_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,6 @@ def execute(cmd):
for _, cleanup in SHORTCUT_HANDLERS.values():
if cleanup:
cleanup(cmd, [])
# Clean up other lingering directories
LOGGER.info("Purging remaining files")
for d in _iterdir(cmd.install_dir):
if d.is_dir():
LOGGER.verbose("Removing %s", d)
rmtree(d, after_5s_warning=warn_msg.format("remaining files"))
if any(_iterdir(cmd.install_dir)):
LOGGER.warn("Unable to fully remove %s.", cmd.install_dir)
LOGGER.debug("END uninstall_command.execute")
return

Expand Down
Loading