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 7958762 commit fbd0ec8Copy full SHA for fbd0ec8
packages/build/src/packaging/download-crypt-library.ts
@@ -38,7 +38,7 @@ export async function downloadCryptLibrary(
38
if (/ppc64|s390x/.test(opts.arch || process.arch)) {
39
versionSpec = 'stable';
40
}
41
- if (opts.platform === 'darwin') {
+ if ((opts.platform || process.platform) === 'darwin') {
42
versionSpec = '8.0.5'; // TBD(SERVER-101020): Figure out at what point we use a later version.
43
44
const { downloadedBinDir: libdir, version } =
0 commit comments