We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06a5f5d commit e1fb085Copy full SHA for e1fb085
misc/convert-cache.py
@@ -50,7 +50,7 @@ def main() -> None:
50
input, output = SqliteMetadataStore(input_dir), FilesystemMetadataStore(output_dir)
51
52
for s in input.list_all():
53
- if s.endswith(".json"):
+ if s.endswith((".json", ".ff")):
54
assert output.write(
55
s, input.read(s), input.getmtime(s)
56
), f"Failed to write cache file {s}!"
0 commit comments