This commit is contained in:
Anthony Sottile 2025-11-09 16:29:53 -05:00
parent 49e28eea48
commit ef464b31ac
3 changed files with 122 additions and 62 deletions

View file

@ -5,5 +5,7 @@ from pre_commit.store import Store
def gc(store: Store) -> int:
output.write_line(f'{store.gc()} repo(s) removed.')
installs, clones = store.gc()
output.write_line(f'{clones} clone(s) removed.')
output.write_line(f'{installs} installs(s) removed.')
return 0