Skip to content

Commit 232bed0

Browse files
committed
chore: fix download url
1 parent 78f2e4a commit 232bed0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/util/MongoBinaryDownloadUrl.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ export default class MongoBinaryDownloadUrl {
2525

2626
async getDownloadUrl(): Promise<string> {
2727
const archive = await this.getArchiveName();
28-
return `${process.env?.MONGOMS_DOWNLOAD_MIRROR || 'https://fastdl.mongodb.org'}/
29-
${this.platform}/${archive}`;
28+
return `${process.env?.MONGOMS_DOWNLOAD_MIRROR || 'https://fastdl.mongodb.org'}/${this.platform}/${archive}`;
3029
}
3130

3231
async getArchiveName(): Promise<string> {

0 commit comments

Comments
 (0)