From e1fb085483bc35a06c39da074787effc660267d1 Mon Sep 17 00:00:00 2001 From: Ivan Levkivskyi Date: Sat, 7 Feb 2026 17:42:30 +0000 Subject: [PATCH] Update convert-cache script to work with fixed format --- misc/convert-cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/convert-cache.py b/misc/convert-cache.py index 2a8a9579c11bd..966befeffb688 100755 --- a/misc/convert-cache.py +++ b/misc/convert-cache.py @@ -50,7 +50,7 @@ def main() -> None: input, output = SqliteMetadataStore(input_dir), FilesystemMetadataStore(output_dir) for s in input.list_all(): - if s.endswith(".json"): + if s.endswith((".json", ".ff")): assert output.write( s, input.read(s), input.getmtime(s) ), f"Failed to write cache file {s}!"