Skip to content

Commit 5e5fdd1

Browse files
committed
Fix win32 identifiers with --only
1 parent 1e3f3fd commit 5e5fdd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cibuildwheel/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def build_in_directory(args: CommandLineArguments) -> None:
173173
platform = "linux"
174174
elif "macosx_" in args.only:
175175
platform = "macos"
176-
elif "win_" in args.only:
176+
elif "win_" in args.only or "win32" in args.only:
177177
platform = "windows"
178178
else:
179179
print(

0 commit comments

Comments
 (0)