-
Notifications
You must be signed in to change notification settings - Fork 379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Command] New option shortcut collides with Symfony pre-3.x default option shortcuts, causing exception when running cache:resolve
command
#988
Comments
@Danita Thanks for the report. Looks like older versions of the Symfony console had a In the future, it would likely be sensible to extend our tests to include additional functional ones with the entire Symfony environment loaded, so issues like this can be avoided. In the immediate, I'm working on a few minor "cleanup" tweaks to the latest console changes (to ensure the transition from the If you need to run those commands in the interim, you can resolve the exception by removing the ->addOption('as-script', null, InputOption::VALUE_NONE, // ... Instead of broken, current implementation of: ->addOption('as-script', 's', InputOption::VALUE_NONE, // ... |
cache:resolve -h
on Symfony 2.8cache:resolve
command
Just as a quick update, resolution waiting on symfony/symfony#24105 (comment) as that PR broke our test suite (and user-facing code) for Symfony |
For now we can use 1.8.0 until the issue is solved. Thanks for your quick response, it's very appreciated! 😄 |
If you have a moment, test the changes that should resolve this issue by running the following in one of your projects to fetch my latest work and run the resolve/remove command:
|
Yes, it worked perfectly in our setup, thanks! |
@Danita The |
Hi! We're getting the following error when running
php app/console liip:imagine:cache:resolve -h
on an application built with Symfony 2.8:This is new to 1.9.0, it doesn't happen with 1.8.0. Seems to be related to this pull request https://github.com/liip/LiipImagineBundle/pull/967/files#diff-d758689e0e797fc5329e93e432a7e196R38
Thanks!
The text was updated successfully, but these errors were encountered: