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) ->) ->
|
optimiseFile: (src, dst, callback = (error) ->) ->
|
||||||
# check output file (src) and see if we can optimise it, storing
|
# check output file (src) and see if we can optimise it, storing
|
||||||
# the result in the build directory (dst)
|
# the result in the build directory (dst)
|
||||||
if src.match(/\.pdf$/)
|
if src.match(/\/output\.pdf$/)
|
||||||
OutputFileOptimiser.optimisePDF src, dst, callback
|
OutputFileOptimiser.optimisePDF src, dst, callback
|
||||||
else
|
else
|
||||||
callback (null)
|
callback (null)
|
||||||
|
|||||||
Reference in New Issue
Block a user