function drush_git_deploy_post_pm_enable in Git Deploy 6
Same name and namespace in other branches
- 7 git_deploy.drush.inc \drush_git_deploy_post_pm_enable()
Implements drush_MODULE_post_COMMAND().
File
- ./
git_deploy.drush.inc, line 64 - Drush integration for the git_deploy module.
Code
function drush_git_deploy_post_pm_enable() {
$modules = func_get_args();
if (in_array('git_deploy', $modules)) {
drush_git_deploy_download();
}
}