Skip to content

Commit

Permalink
style: fix lint error
Browse files Browse the repository at this point in the history
nodkz committed Oct 18, 2018
1 parent d9a6751 commit b191c94
Showing 2 changed files with 1,163 additions and 41 deletions.
4 changes: 3 additions & 1 deletion src/util/MongoBinaryDownloadUrl.js
Original file line number Diff line number Diff line change
@@ -25,7 +25,9 @@ export default class MongoBinaryDownloadUrl {

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

async getArchiveName(): Promise<string> {
Loading

0 comments on commit b191c94

Please sign in to comment.