You are here

function git_deploy_drush_command in Git Deploy 6

Same name and namespace in other branches
  1. 7 git_deploy.drush.inc \git_deploy_drush_command()

Implements hook_drush_command().

File

./git_deploy.drush.inc, line 11
Drush integration for the git_deploy module.

Code

function git_deploy_drush_command() {
  $items['git-deploy-download'] = array(
    'description' => dt('Downloads the glip library from https://github.com/halstead/glip/.'),
    'arguments' => array(
      'path' => dt('Optional. A path to the download folder. If omitted, Drush will use sites/all/libraries/glip.'),
    ),
    'aliases' => array(
      'gdd',
    ),
  );
  return $items;
}