From a1174e1732ac5bdadac4104ebee0797a5b44b6e7 Mon Sep 17 00:00:00 2001 From: Craig Davis Date: Thu, 19 Oct 2017 16:59:16 -0700 Subject: [PATCH] Fix incorrect wkhtmltopdf command --- src/Resume/Command/PdfCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Resume/Command/PdfCommand.php b/src/Resume/Command/PdfCommand.php index 7240b1c..78c8950 100644 --- a/src/Resume/Command/PdfCommand.php +++ b/src/Resume/Command/PdfCommand.php @@ -83,7 +83,7 @@ class PdfCommand extends HtmlCommand file_put_contents($pdfSource, $rendered); // Process the document with wkhtmltopdf - exec('wkhtmltopdf --dpi 300' . $pdfSource .' ' . $destFilename); + exec('wkhtmltopdf --dpi 300 ' . $pdfSource .' ' . $destFilename); // Unlink the temporary file unlink($pdfSource);