Skip to content

Commit

Permalink
DRIVERS-3002 Update mongodl validation
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Oct 25, 2024
1 parent e6a901d commit 4d35a6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .evergreen/mongodl.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def _import_json_data(self, data: 'Any') -> None:
for distro in DISTRO_ID_TO_TARGET.values():
if target in list(distro.values()):
found = True
if not found and target not in ['macos', 'windows']:
if not found and target not in ['linux_i686', 'linux_x86_64', 'osx', 'macos', 'windows']:
missing.add(target)
edition = dl['edition']
ar_url = dl['archive']['url']
Expand Down

0 comments on commit 4d35a6d

Please sign in to comment.