We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62337fd commit ada4f2aCopy full SHA for ada4f2a
packages/mongodb-memory-server-core/src/util/MongoBinaryDownload.ts
@@ -455,7 +455,7 @@ export class MongoBinaryDownload {
455
const mbComplete = Math.round((this.dlProgress.current / 1048576) * 10) / 10;
456
457
const crReturn = this.platform === 'win32' ? '\x1b[0G' : '\r';
458
- const message = `Downloading MongoDB ${this.version}: ${percentComplete} % (${mbComplete}mb / ${this.dlProgress.totalMb}mb)${crReturn}`;
+ const message = `Downloading MongoDB "${this.version}": ${percentComplete}% (${mbComplete}mb / ${this.dlProgress.totalMb}mb)${crReturn}`;
459
460
if (process.stdout.isTTY) {
461
// if TTY overwrite last line over and over until finished
0 commit comments