aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2021-06-14 21:11:59 +0200
committerMartin Czygan <martin.czygan@gmail.com>2021-06-14 21:11:59 +0200
commit40d928650c26860481ba92f386d324b173c1b420 (patch)
tree4944e8c7a4cb345085b01fc18746c5d19740a2be /python
parent328ee5ae9cc3cf88a1f833d8a3dc1ffc17ef0982 (diff)
downloadrefcat-40d928650c26860481ba92f386d324b173c1b420.tar.gz
refcat-40d928650c26860481ba92f386d324b173c1b420.zip
tasks: fix flag
Diffstat (limited to 'python')
-rw-r--r--python/refcat/tasks.py2
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)