only run qpdf for the main output.pdf file

was previously matching any pdf file, which caused it to run for
embedded pdf figures produced during the mklatex run
This commit is contained in:
Brian Gough
2015-05-13 16:59:51 +01:00
parent 94c4187eb2
commit 558b5e000f

View File

@@ -9,7 +9,7 @@ module.exports = OutputFileOptimiser =
optimiseFile: (src, dst, callback = (error) ->) ->
# check output file (src) and see if we can optimise it, storing
# the result in the build directory (dst)
if src.match(/\.pdf$/)
if src.match(/\/output\.pdf$/)
OutputFileOptimiser.optimisePDF src, dst, callback
else
callback (null)