function git_deploy_drush_help in Git Deploy 6
Same name and namespace in other branches
- 7 git_deploy.drush.inc \git_deploy_drush_help()
Implements hook_drush_help().
File
- ./
git_deploy.drush.inc, line 25 - Drush integration for the git_deploy module.
Code
function git_deploy_drush_help($section) {
switch ($section) {
case 'drush:git_deploy-download':
return dt('Downloads the glip library from https://github.com/halstead/glip/. Places it in the libraries directory. Skips download if library already present. This all happens automatically if you enable git_deploy using Drush.');
}
}