Skip to content

Commit 8fda5be

Browse files
committed
debug
1 parent 960e4ca commit 8fda5be

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.evergreen/scripts/setup-tests.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,5 @@ fi
5858

5959
. $ROOT_DIR/.evergreen/utils.sh
6060
PYTHON=${PYTHON_BINARY:-$(find_python3)}
61+
cat /etc/os-release
6162
$PYTHON $SCRIPT_DIR/setup_tests.py

.evergreen/scripts/setup_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def setup_libmongocrypt():
112112
version_id = ""
113113
arch = platform.machine()
114114
with open("/etc/os-release") as fid:
115-
for line in fid:
115+
for line in fid.readlines():
116116
if line.startswith("NAME="):
117117
_, _, name = line.strip().partition("=")
118118
if line.startswith("VERSION_ID="):

0 commit comments

Comments
 (0)