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 02f9b21 commit a7c685bCopy full SHA for a7c685b
packages/mongodb-memory-server-core/src/util/MongoBinaryDownload.ts
@@ -281,7 +281,7 @@ export class MongoBinaryDownload {
281
282
await mkdir(path.dirname(mongodbFullPath));
283
284
- const filter = (file: string) => /(?:bin\/(?:mongod(?:\.exe)?)|(?:.*\.dll))$/i.test(file);
+ const filter = (file: string) => /(?:bin\/(?:mongod(?:\.exe)?))$/i.test(file);
285
286
if (/(.tar.gz|.tgz)$/.test(mongoDBArchive)) {
287
await this.extractTarGz(mongoDBArchive, mongodbFullPath, filter);
0 commit comments