diff --git a/project/src/utils/ProgressWriter.ts b/project/src/utils/ProgressWriter.ts index c953e3b8..48343259 100644 --- a/project/src/utils/ProgressWriter.ts +++ b/project/src/utils/ProgressWriter.ts @@ -38,7 +38,7 @@ export class ProgressWriter { const barFill = this.barFillChar.repeat(filledChars); const barEmptySpace = this.barEmptyChar.repeat(emptyChars); - const progressBar = `-> ${this.count} / ${this.total} [${barFill}${barEmptySpace}] ${percent}% `; + const progressBar = `-> ${this.count} / ${this.total} ${barFill}${barEmptySpace} ${percent}% `; readline.cursorTo(process.stdout, 0, null); process.stdout.write(progressBar);