1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 01:36:27 +00:00

fix corrupt

This commit is contained in:
Alex Xu
2024-09-06 22:12:30 -07:00
parent 4e9714e6f8
commit fe902ec213

View File

@@ -67,7 +67,7 @@ class ComicArchive:
missing = []
extraction_commands = [
['tar', '-xf', self.filepath, '-C', targetdir],
['tar', '--exclude="__MACOSX"', '--exclude=".DS_Store"', '--exclude="thumbs.db"', '--exclude="Thumbs.db"', '-xf', self.filepath, '-C', targetdir],
['7z', 'x', '-y', '-xr!__MACOSX', '-xr!.DS_Store', '-xr!thumbs.db', '-xr!Thumbs.db', '-o' + targetdir, self.filepath],
]