moveconfig: Avoid showing progress at the end

When the process is finished, moveconfig leaves a line saying that all
boards were processed (for better or worse). Drop this, since it is
unncessary.

Future work will provide a summary at the end instead.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2023-09-23 13:44:08 -06:00
parent 9461bf0d65
commit 95f0914ee8

View file

@ -282,7 +282,8 @@ class Progress:
def show(self):
"""Display the progress."""
print(f' {self.current} defconfigs out of {self.total}\r', end=' ')
if self.current != self.total:
print(f' {self.current} defconfigs out of {self.total}\r', end=' ')
sys.stdout.flush()