Skip to content

Commit d62b489

Browse files
committedOct 7, 2020
fix(MongoBinaryDownloadUrl): fix win32 download generation
- add "-2008plus-ssl" if below version 4.1.0 and not just when below 4.0.0 fixes #399
1 parent 706408d commit d62b489

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/mongodb-memory-server-core/src/util/MongoBinaryDownloadUrl.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default class MongoBinaryDownloadUrl {
7777
if (!isNullOrUndefined(semver.coerce(this.version))) {
7878
if (semver.satisfies(this.version, '4.2.x')) {
7979
name += '-2012plus';
80-
} else if (semver.lt(this.version, '4.0.0')) {
80+
} else if (semver.lt(this.version, '4.1.0')) {
8181
name += '-2008plus-ssl';
8282
}
8383
}

0 commit comments

Comments
 (0)
Please sign in to comment.