浏览代码

buildman: Clean up odd characters on the terminal

At present buildman leaves behind a few characters during its progress
updates, which looks odd. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Simon Glass 8 年之前
父节点
当前提交
960421ecb3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/buildman/builder.py

+ 1 - 1
tools/buildman/builder.py

@@ -443,7 +443,7 @@ class Builder:
 
         name += target
         Print(line + name, newline=False)
-        length = 14 + len(name)
+        length = 16 + len(name)
         self.ClearLine(length)
 
     def _GetOutputDir(self, commit_upto):