diff --git a/misc/convert-cache.py b/misc/convert-cache.py index 2a8a9579c11b..966befeffb68 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}!"