function quickupdate_drush_command in Quick update 8
Same name and namespace in other branches
- 7 quickupdate.drush.inc \quickupdate_drush_command()
Implements hook_drush_command().
File
- ./
quickupdate.drush.inc, line 11 - Drush integration for the Quick update module.
Code
function quickupdate_drush_command() {
$items['qup-missing-dependencies'] = array(
'description' => 'Download missing dependency projects.',
'aliases' => array(
'qup-md',
),
);
return $items;
}