Skip to content

Commit 247ca37

Browse files
Scanioxt-bre
authored andcommitted
fix: re-enable --dry-run on Windows
1 parent 9815059 commit 247ca37

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

ccdgen/__main__.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,7 @@ def make(command: list[str] = []) -> str:
7474

7575
CODEC = 'utf-8' # TODO: is this always the case?
7676

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']
77+
make_commands = ['--always-make', '--dry-run']
8278

8379
try:
8480
result = subprocess.run(command + make_commands,

0 commit comments

Comments
 (0)