Skip to content

Commit

Permalink
eclean: dist: fix printing VCS clean items with --quiet
Browse files Browse the repository at this point in the history
Bug: https://bugs.gentoo.org/928951
Signed-off-by: Sam James <[email protected]>
  • Loading branch information
thesamesam committed May 3, 2024
1 parent a239275 commit bb6faf4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pym/gentoolkit/eclean/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,11 @@ def progress_controller(self, size, key, clean_list, file_type):
print(self.prettySize(size, True), self.pkg_color(key))
elif self.options["pretend"] or self.options["interactive"]:
# file list mode
for file_ in clean_list:
print(file_)
if file_type == "checkout":
print(clean_list)
else:
for file_ in clean_list:
print(file_)
if self.options["pretend"]:
return False
elif (
Expand Down

0 comments on commit bb6faf4

Please sign in to comment.