You are here

function migrate_devel_drush_help_alter in Migrate Devel 8.2

Same name and namespace in other branches
  1. 8 migrate_devel.drush.inc \migrate_devel_drush_help_alter()

Implements hook_drush_help_alter().

File

./migrate_devel.drush.inc, line 16
File for Drush Integration.

Code

function migrate_devel_drush_help_alter(&$command) {
  if ($command['command'] === 'migrate-status') {
    $command['options']['migrate-debug'] = 'Enable Debug Mode';
  }
}