Skip to content

Commit b191c94

Browse files
committed
style: fix lint error
1 parent d9a6751 commit b191c94

File tree

2 files changed

+1163
-41
lines changed

2 files changed

+1163
-41
lines changed

src/util/MongoBinaryDownloadUrl.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ 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'}/${this.platform}/${archive}`;
28+
return `${process.env?.MONGOMS_DOWNLOAD_MIRROR || 'https://fastdl.mongodb.org'}/${
29+
this.platform
30+
}/${archive}`;
2931
}
3032

3133
async getArchiveName(): Promise<string> {

0 commit comments

Comments
 (0)