mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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:
parent
9461bf0d65
commit
95f0914ee8
1 changed files with 2 additions and 1 deletions
|
@ -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()
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue