From 7995a6f0deb1c9e8aceffcc43d5b3b46c450c4c3 Mon Sep 17 00:00:00 2001 From: waffle-lord <76401815+waffle-lord@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:13:25 -0500 Subject: [PATCH] Update ProgressWriter.ts idk what I'm doing but ref said this is ok to direct push so screw you drakia Ima do it --- project/src/utils/ProgressWriter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);