diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-06-14 21:11:59 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-06-14 21:11:59 +0200 |
commit | 40d928650c26860481ba92f386d324b173c1b420 (patch) | |
tree | 4944e8c7a4cb345085b01fc18746c5d19740a2be | |
parent | 328ee5ae9cc3cf88a1f833d8a3dc1ffc17ef0982 (diff) | |
download | refcat-40d928650c26860481ba92f386d324b173c1b420.tar.gz refcat-40d928650c26860481ba92f386d324b173c1b420.zip |
tasks: fix flag
-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 efb683e..d33aaa8 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1288,7 +1288,7 @@ class BrefCombined(Refcat): def run(self): output = shellout(""" - skate-reduce -m unmatched -B <(zstdcat -T0 {matched}) -R <(zstdcat -T0 {refs}) > {output} + skate-reduce -m unmatched -B <(zstdcat -T0 {matched}) -F <(zstdcat -T0 {refs}) > {output} """, matched=self.input().get("matched").path, refs=self.input().get("refs").path) |