? .cache
? .project
? drush_abort.patch
? drush_nocolor.patch
? commands/action
? includes/table.inc
Index: drush.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/drush/drush.php,v
retrieving revision 1.72
diff -b -u -p -r1.72 drush.php
Index: commands/core/drupal/update_6.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/drush/commands/core/drupal/update_6.inc,v
retrieving revision 1.9
diff -b -u -p -r1.9 update_6.inc
--- commands/core/drupal/update_6.inc	19 Aug 2009 02:33:56 -0000	1.9
+++ commands/core/drupal/update_6.inc	1 Oct 2009 14:24:38 -0000
@@ -442,6 +442,7 @@ function _update_do_one($module, $number
 
   if (function_exists($function)) {
     $ret = $function($context['sandbox']);
+    $context['results'][$module] = $ret;
     _drush_log_update_sql($ret);
   }
 
Index: commands/core/drupal/update_7.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/drush/commands/core/drupal/update_7.inc,v
retrieving revision 1.9
diff -b -u -p -r1.9 update_7.inc
--- commands/core/drupal/update_7.inc	19 Aug 2009 02:33:56 -0000	1.9
+++ commands/core/drupal/update_7.inc	1 Oct 2009 14:24:38 -0000
@@ -574,6 +574,7 @@ function _update_do_one($module, $number
     if (function_exists($function)) {
       drush_log("Running $function");
       $ret = $function($context['sandbox']);
+      $context['results'][$module] = $ret;
     }
     _drush_log_update_sql($ret);
   }
