Skip to content

Commit

Permalink
cpp/workaround: check RC only on non-windows platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed Feb 10, 2024
1 parent f8a16db commit d43b1ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ctypesgen/parser/preprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def parse(self, filename):
cmd,
universal_newlines=False, # binary
stdout=subprocess.PIPE,
check=True,
check=not IS_WINDOWS,
)

if IS_MAC:
Expand Down

0 comments on commit d43b1ef

Please sign in to comment.