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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user