? 0001-fixed-1051324.patch
? 0001-fixed-1052826.patch
? drush-1051324.patch
? drushrc.php
? includes/table.inc
Index: commands/pm/package_handler/git_drupalorg.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/drush/commands/pm/package_handler/git_drupalorg.inc,v
retrieving revision 1.11
diff -u -r1.11 git_drupalorg.inc
--- commands/pm/package_handler/git_drupalorg.inc	6 Jan 2011 07:18:27 -0000	1.11
+++ commands/pm/package_handler/git_drupalorg.inc	8 Feb 2011 20:54:26 -0000
@@ -109,9 +109,9 @@
 function package_handler_post_download($project) {
   if (drush_get_option('gitsubmodule', FALSE)) {
     // Obtain the superproject path, then add as submodule.
-    if (drush_shell_cd_and_exec(dirname($project['full_project_path']), 'git rev-parse --git-dir')) {
+    if (drush_shell_cd_and_exec(dirname($project['full_project_path']), 'git rev-parse --show-toplevel')) {
       $output = drush_shell_exec_output();
-      $superproject = dirname($output[0]);
+      $superproject = $output[0];
       // Add the downloaded project as a submodule of its git superproject.
       $command = array();
       $command[] = 'git submodule add';
