Skip to content

Commit

Permalink
Windows detection doesn't work.
Browse files Browse the repository at this point in the history
  • Loading branch information
fbriol committed Aug 12, 2022
1 parent f8880b8 commit cfeda0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def get_build_args(self, cfg: str) -> List[str]:
* `cfg`: config, one of {"debug", "release"}
"""
build_args = ["--config", cfg]
is_windows = platform.system() == "windows"
is_windows = platform.system() == "Windows"
if is_windows:
build_args += ['--', '/m']
else:
Expand Down

0 comments on commit cfeda0b

Please sign in to comment.