Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

drush_pm_wget_update_project

Definition

drush_pm_wget_update_project($project, $info, $path = '.')
contributions/drush/drush_pm_wget/drush_pm_wget.module, line 80

Description

This is an alias of the install function, since they are identical

Code

<?php
function drush_pm_wget_update_project($project, $info, $path = '.') {
  return drush_pm_wget_install_project($project, $info, $path);
}
?>