mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-28 10:26:35 +02:00
progress script fix
This commit is contained in:
parent
c446cc3963
commit
9ecafe18e0
1 changed files with 2 additions and 2 deletions
|
|
@ -25,7 +25,7 @@ const width = 60;
|
||||||
console.log(
|
console.log(
|
||||||
"▓".repeat(progress * width) +
|
"▓".repeat(progress * width) +
|
||||||
"░".repeat((1 - progress) * width) +
|
"░".repeat((1 - progress) * width) +
|
||||||
` (${numTotal - TOTAL}/${TOTAL})`
|
` (${TOTAL - numTotal}/${TOTAL})`
|
||||||
);
|
);
|
||||||
console.log();
|
console.log();
|
||||||
console.log(`${progress * 100.0}% complete to sqlite-vec v0`);
|
console.log(`${(progress * 100.0).toPrecision(2)}% complete to sqlite-vec v0`);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue