Keep uncompressed output files after zip jobs.

This commit is contained in:
Patrick Jentsch 2020-05-13 09:11:01 +02:00
parent a75b32ca1d
commit 64fe706126

3
ocr
View File

@ -307,7 +307,6 @@ class OCRPipeline(WorkflowRunner):
cmd = 'cd "{}"'.format(self.output_dir)
cmd += ' && '
cmd += 'zip'
cmd += ' -m'
cmd += ' -r'
cmd += ' "{}".pdf.zip .'.format(self.zip)
cmd += ' -x "pyflow.data*" "*tmp*"'
@ -322,7 +321,6 @@ class OCRPipeline(WorkflowRunner):
cmd = 'cd "{}"'.format(self.output_dir)
cmd += ' && '
cmd += 'zip'
cmd += ' -m'
cmd += ' -r'
cmd += ' "{}".txt.zip .'.format(self.zip)
cmd += ' -x "pyflow.data*" "*tmp*"'
@ -337,7 +335,6 @@ class OCRPipeline(WorkflowRunner):
cmd = 'cd "{}"'.format(self.output_dir)
cmd += ' && '
cmd += 'zip'
cmd += ' -m'
cmd += ' -r'
cmd += ' "{}".xml.zip .'.format(self.zip)
cmd += ' -x "pyflow.data*" "*tmp*"'