From f22e88611dda2f713ce9b8ae004915ae006105ba Mon Sep 17 00:00:00 2001 From: Trent Piepho Date: Tue, 28 Nov 2023 14:21:03 -0800 Subject: [PATCH] py/makeqstrdefs.py: Don't skip output for stale hash file. In "cat" mode a "$output_file.hash" file is checked to see if the hash of the new output is the same as the existing, and if so the output file isn't updated. However, it's possible that the output file has been deleted but the hash file has not. In this case the output file is not created. Change the logic so that a hash file is considered stale if there is no output file and still create the output. Signed-off-by: Trent Piepho --- py/makeqstrdefs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/makeqstrdefs.py b/py/makeqstrdefs.py index 57200e069..bdc432d7d 100644 --- a/py/makeqstrdefs.py +++ b/py/makeqstrdefs.py @@ -163,7 +163,7 @@ def cat_together(): mode_full = "Module registrations" elif args.mode == _MODE_ROOT_POINTER: mode_full = "Root pointer registrations" - if old_hash != new_hash: + if old_hash != new_hash or not os.path.exists(args.output_file): print(mode_full, "updated") try: # rename below might fail if file exists