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 960e4ca commit 8fda5beCopy full SHA for 8fda5be
.evergreen/scripts/setup-tests.sh
@@ -58,4 +58,5 @@ fi
58
59
. $ROOT_DIR/.evergreen/utils.sh
60
PYTHON=${PYTHON_BINARY:-$(find_python3)}
61
+cat /etc/os-release
62
$PYTHON $SCRIPT_DIR/setup_tests.py
.evergreen/scripts/setup_tests.py
@@ -112,7 +112,7 @@ def setup_libmongocrypt():
112
version_id = ""
113
arch = platform.machine()
114
with open("/etc/os-release") as fid:
115
- for line in fid:
+ for line in fid.readlines():
116
if line.startswith("NAME="):
117
_, _, name = line.strip().partition("=")
118
if line.startswith("VERSION_ID="):
0 commit comments