Skip to content

Commit 4db65ab

Browse files
committed
Update backend.py
1 parent cf4d719 commit 4db65ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

_build_backend/backend.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ def _bootstrap_build(temp_path: str, config_settings: dict[str, list[str] | str]
133133
assert archive_name.endswith(".zip")
134134
with zipfile.ZipFile(archive_path) as zip_:
135135
zip_.extractall(path=temp_path_)
136-
cmake_path = next(temp_path_.glob("cmake-*/bin/cmake"))
136+
print([x for x in temp_path_.iterdir())
137+
cmake_path = next(temp_path_.glob("cmake-*/bin/cmake.exe"))
137138

138139
return str(cmake_path)
139140

0 commit comments

Comments
 (0)