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 73fc9ab commit ef3e01dCopy full SHA for ef3e01d
.evergreen/scripts/setup_tests.py
@@ -113,11 +113,11 @@ def setup_libmongocrypt():
113
arch = platform.machine()
114
with open("/etc/os-release") as fid:
115
for line in fid.readlines():
116
+ line = line.replace('"', "") # noqa: PLW2901
117
if line.startswith("NAME="):
118
_, _, name = line.strip().partition("=")
119
if line.startswith("VERSION_ID="):
120
_, _, version_id = line.strip().partition("=")
- raise ValueError(f"{name=} {version_id}=")
121
if name.startswith("Debian"):
122
target = f"debian{version_id}"
123
elif name.startswith("Red Hat"):
0 commit comments