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 78f2e4a commit 232bed0Copy full SHA for 232bed0
src/util/MongoBinaryDownloadUrl.js
@@ -25,8 +25,7 @@ export default class MongoBinaryDownloadUrl {
25
26
async getDownloadUrl(): Promise<string> {
27
const archive = await this.getArchiveName();
28
- return `${process.env?.MONGOMS_DOWNLOAD_MIRROR || 'https://fastdl.mongodb.org'}/
29
- ${this.platform}/${archive}`;
+ return `${process.env?.MONGOMS_DOWNLOAD_MIRROR || 'https://fastdl.mongodb.org'}/${this.platform}/${archive}`;
30
}
31
32
async getArchiveName(): Promise<string> {
0 commit comments