Update the pdf command to fix a problem with the template argument

This commit is contained in:
Craig Davis 2014-01-12 17:14:29 -07:00
parent d5da28b83a
commit 62e6377d08
5 changed files with 4 additions and 4 deletions

View File

@ -97,7 +97,7 @@ are a more comfortable with html than markdown, you should use it.
## Changelog ## Changelog
* __2.0.0__ : Complete rewrite with the [symfony console component][console]. * __2.0.0__ : Complete rewrite with the [symfony console component][console].
Deployment is no done with a compiled phar file, and development dependencies Deployment is now done with a compiled phar file, and development dependencies
are managed with composer. are managed with composer.
* __0.9.0__ : Add composer and update README with new changelog * __0.9.0__ : Add composer and update README with new changelog
* __0.8.8__ : Add Chinese text example (@ishitcno1) * __0.8.8__ : Add Chinese text example (@ishitcno1)

Binary file not shown.

2
composer.lock generated
View File

@ -3,7 +3,7 @@
"This file locks the dependencies of your project to a known state", "This file locks the dependencies of your project to a known state",
"Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file" "Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file"
], ],
"hash": "40e7ded8558afab5c3b481ec2d33dafe", "hash": "d9ac9e8bf489e24869014b77959a93ea",
"packages": [ "packages": [
{ {
"name": "kriswallsmith/assetic", "name": "kriswallsmith/assetic",

View File

@ -28,7 +28,7 @@ class PdfCommand extends HtmlCommand
->addOption( ->addOption(
'template', 'template',
't', 't',
InputOption::VALUE_NONE, InputOption::VALUE_OPTIONAL,
'Which of the templates to use' 'Which of the templates to use'
); );
} }