Skip to content

Commit 3dd1c1e

Browse files
committed
fix distro handling
1 parent 8fda5be commit 3dd1c1e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.evergreen/scripts/setup_tests.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,7 @@ def setup_libmongocrypt():
116116
if line.startswith("NAME="):
117117
_, _, name = line.strip().partition("=")
118118
if line.startswith("VERSION_ID="):
119-
_, _, version = line.strip().partition("=")
120-
raise ValueError(f"{name=}, {version_id=}, {arch=}")
119+
_, _, version_id = line.strip().partition("=")
121120
if name.startswith("Debian"):
122121
target = f"debian{version_id}"
123122
elif name.startswith("Red Hat"):

0 commit comments

Comments
 (0)