- Issue created by @tunic
The drush command uses dashes for the name and the options:
$ drush image_derivatives:generate --help
Generate all derivatives for all image styles.
Options:
--image_styles[=IMAGE_STYLES] Coma separated image styles IDs.
--skip_existing Option to skip generating existing derivative images.
Global options:
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
-y, --yes Auto-accept the default for all user prompts. Equivalent to --no-interaction.
-l, --uri=URI A base URL for building links and selecting a multi-site. Defaults to https://default.
To see all global options, run `drush topic` and pick the first choice.
Usually, dashes are used, so this should be:
$ drush image-derivatives:generate --help
Generate all derivatives for all image styles.
Options:
--image-styles[=IMAGE_STYLES] Coma separated image styles IDs.
--skip-existing Option to skip generating existing derivative images.
[...]
Run drush image_derivatives:generate --help
Use dashses. This implies breaking any scripts using this command. I would:
Patch pending.
Commands will use dashes instead of underscores.
None.
None.
Active
1.2
Code