Skip to content

Commit e1fb085

Browse files
committed
Update convert-cache script to work with fixed format
1 parent 06a5f5d commit e1fb085

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/convert-cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def main() -> None:
5050
input, output = SqliteMetadataStore(input_dir), FilesystemMetadataStore(output_dir)
5151

5252
for s in input.list_all():
53-
if s.endswith(".json"):
53+
if s.endswith((".json", ".ff")):
5454
assert output.write(
5555
s, input.read(s), input.getmtime(s)
5656
), f"Failed to write cache file {s}!"

0 commit comments

Comments
 (0)