log: expand progress bar width to 35 (#170)
Otherwise we can't use "linuxstatic" due to progress bar out of range...
This commit is contained in:
parent
629cc71d26
commit
f28cbd6cf7
@ -52,7 +52,7 @@ class Log {
|
||||
enableProgress(text: string) {
|
||||
assert(!this.bar);
|
||||
|
||||
text += ' '.repeat(28 - text.length);
|
||||
text += ' '.repeat(35 - text.length);
|
||||
this.bar = new Progress(` ${text} [:bar] :percent`, {
|
||||
stream: process.stdout,
|
||||
width: 20,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user