Skip to content

Commit 4bd7635

Browse files
committed
fix enterprise auth
1 parent 4a630e0 commit 4bd7635

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/scripts/setup-tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def read_env(path: Path | str) -> dict[str, Any]:
8989
for line in fid.readlines():
9090
if "=" not in line:
9191
continue
92-
name, _, value = line.partition("=")
92+
name, _, value = line.strip().partition("=")
9393
if value.startswith(('"', "'")):
9494
value = value[1:-1]
9595
name = name.replace("export ", "")

0 commit comments

Comments
 (0)