diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/refcat/tasks.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 65184c4..af828f4 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1444,7 +1444,8 @@ class BrefZipWikiDOI(Refcat): def run(self): output = shellout(""" - skate-reduce -m wiki -W {wiki} -L {fatcat} | zstd -T0 -c > {output} + skate-reduce -m wiki -W <(zstdcat -T0 {wiki}) -L <(zstdcat -T0 {fatcat)} | + zstd -T0 -c > {output} """, wiki=self.input().get("wiki").path, fatcat=self.input().get("fatcat").path) |