diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-06-15 11:36:41 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-06-15 11:36:41 +0200 |
commit | 63922f9e6a3d1ab0be13d3ae2fd4eb9c55069611 (patch) | |
tree | 13c142ee9932b2fa07fcbb1581b20dfa8d1a762a /python | |
parent | f11e5af00f46b45b67d2aff40b21aa1d52acca11 (diff) | |
download | refcat-63922f9e6a3d1ab0be13d3ae2fd4eb9c55069611.tar.gz refcat-63922f9e6a3d1ab0be13d3ae2fd4eb9c55069611.zip |
tasks: compress output
Diffstat (limited to 'python')
-rw-r--r-- | python/refcat/tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 5da1f05..7aecd08 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1292,7 +1292,7 @@ class BrefCombined(Refcat): output = shellout(""" skate-reduce -log {logfile} -m unmatched -B <(zstdcat -T0 {matched}) - -F <(zstdcat -T0 {refs}) > {output} + -F <(zstdcat -T0 {refs}) | zstd -c -T0 > {output} """, logfile=logfile, matched=self.input().get("matched").path, |