Thanks to visit codestin.com Credit goes to github.com
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 3f6d41dCopy full SHA for 3f6d41d
1 file changed
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