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 543cfbc commit 43b746aCopy full SHA for 43b746a
packages/mongodb-memory-server-core/src/util/MongoBinaryDownload.ts
@@ -63,7 +63,11 @@ export class MongoBinaryDownload {
63
* @return Absoulte Path with FileName
64
*/
65
protected async getPath(): Promise<string> {
66
- const opts = await DryMongoBinary.generateOptions({ version: this.version });
+ const opts = await DryMongoBinary.generateOptions({
67
+ version: this.version,
68
+ arch: this.arch,
69
+ downloadDir: this.downloadDir,
70
+ });
71
72
return DryMongoBinary.combineBinaryName(
73
{ version: this.version },
0 commit comments