You are here

function hosting_site_post_hosting_deploy_task in Hosting 7.4

Implements hook_post_hosting_deploy_task().

Ensure post-verify task hooks are run after a deploy.

File

site/hosting_site.drush.inc, line 287
Drush hooks for the Hosting site module.

Code

function hosting_site_post_hosting_deploy_task($task, $data) {
  if ($task->ref->type == 'site') {
    hosting_site_post_hosting_verify_task($task, $data);
  }
}