commit: c25b3bbe90881de411ab2e3ba2720b51d38060b0
parent c45e75037bcb10691ee26ca41d7c2c119170c3bf
Author: QMK Bot <hello@qmk.fm>
Date: Wed, 24 Jul 2024 05:17:22 +0000
Merge remote-tracking branch 'origin/master' into develop
Diffstat:
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py
@@ -101,6 +101,12 @@ def dump_lines(output_file, lines, quiet=True):
if output_file and output_file.name != '-':
output_file.parent.mkdir(parents=True, exist_ok=True)
if output_file.exists():
+ with open(output_file, 'r', encoding='utf-8', newline='\n') as f:
+ existing = f.read()
+ if existing == generated:
+ if not quiet:
+ cli.log.info(f'No changes to {output_file.name}.')
+ return
output_file.replace(output_file.parent / (output_file.name + '.bak'))
with open(output_file, 'w', encoding='utf-8', newline='\n') as f:
f.write(generated)