Skip to content
Snippets Groups Projects

Issue #3231557: --migrate-debug fails with 'You must specify --all, --group, --tag or one or more migration names separated by commas'

Open Issue #3231557: --migrate-debug fails with 'You must specify --all, --group, --tag or one or more migration names separated by commas'
1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
@@ -17,7 +17,10 @@ class MigrateDevelCommands extends DrushCommands {
* @option migrate-debug Enable Debug Mode
* @option migrate-debug-pre Enable Debug Mode (Before Row Save)
*/
public function additionalOptionsMigrateImport(CommandData $commandData)
public function additionalOptionsMigrateImport(CommandData $commandData, array $options = [
'migrate-debug' => FALSE,
'migrate-debug-pre' => FALSE,
])
{
// No action required here. The new options will be examined in the
// migrate event subscriber methods.
Loading