Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,11 @@ if (revisionInfo.local) {
total,
});
}
if (!(progressBar as any).isCompleted) {
if (current == total) {
progressBar.render(current);
console.log("\nDone downloading. Installing now.");
} else {
console.log("Done downloading. Installing now.");
progressBar.render(current)
}
},
);
Expand Down