Skip to content

Commit

Permalink
Fix win32 identifiers with --only
Browse files Browse the repository at this point in the history
  • Loading branch information
joerick committed Sep 24, 2022
1 parent 1e3f3fd commit 5e5fdd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cibuildwheel/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def build_in_directory(args: CommandLineArguments) -> None:
platform = "linux"
elif "macosx_" in args.only:
platform = "macos"
elif "win_" in args.only:
elif "win_" in args.only or "win32" in args.only:
platform = "windows"
else:
print(
Expand Down

0 comments on commit 5e5fdd1

Please sign in to comment.