Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/compass/scripts/download-csfle.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const CSFLE_DIRECTORY = path.resolve(PACKAGE_ROOT, 'src', 'deps', 'csfle');
const downloadOptions = {
enterprise: true,
crypt_shared: true,
version: 'continuous',
version: '>= 8.2.0-rc4', // TODO(COMPASS-9782): switch back to `continuous`
};
if (process.platform === 'linux') {
// The CSFLE shared library is built for different distros,
Expand All @@ -47,7 +47,7 @@ const CSFLE_DIRECTORY = path.resolve(PACKAGE_ROOT, 'src', 'deps', 'csfle');

const { downloadedBinDir, version } = await downloadMongoDbWithVersionInfo(
CACHE_DIR,
'continuous',
'>= 8.2.0-rc4', // TODO(COMPASS-9782): switch back to `continuous`
downloadOptions
);
await fs.mkdir(CSFLE_DIRECTORY, { recursive: true });
Expand Down
Loading