We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--dry-run
1 parent 9815059 commit 247ca37Copy full SHA for 247ca37
ccdgen/__main__.py
@@ -74,11 +74,7 @@ def make(command: list[str] = []) -> str:
74
75
CODEC = 'utf-8' # TODO: is this always the case?
76
77
- # dry run doesn't seem to work on windows
78
- if sys.platform == "win32":
79
- make_commands = ['--always-make']
80
- else:
81
- make_commands = ['--always-make', '--dry-run']
+ make_commands = ['--always-make', '--dry-run']
82
83
try:
84
result = subprocess.run(command + make_commands,
0 commit comments