Merge branch 'rj/submodule-mswin-path'
authorJunio C Hamano <gitster@pobox.com>
Mon, 23 Apr 2012 20:01:49 +0000 (13:01 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 23 Apr 2012 20:01:49 +0000 (13:01 -0700)
By Ramsay Jones
* rj/submodule-mswin-path:
  git-submodule.sh: Don't use $path variable in eval_gettext string

1  2 
git-submodule.sh

index 3d94a14079ccf745b3cf3d5d5a4e471f9b5542bc,279ff9333a9b524d60a4c6edcc86024b01888126..64a70d621aa5b81547ff63740b6876009677aae5
@@@ -167,12 -168,11 +168,12 @@@ module_clone(
        a=${a%/}
        b=${b%/}
  
 -      rel=$(echo $b | sed -e 's|[^/]*|..|g')
 +      # Turn each leading "*/" component into "../"
 +      rel=$(echo $b | sed -e 's|[^/][^/]*|..|g')
-       echo "gitdir: $rel/$a" >"$path/.git"
+       echo "gitdir: $rel/$a" >"$sm_path/.git"
  
 -      rel=$(echo $a | sed -e 's|[^/]*|..|g')
 +      rel=$(echo $a | sed -e 's|[^/][^/]*|..|g')
-       (clear_local_git_env; cd "$path" && GIT_WORK_TREE=. git config core.worktree "$rel/$b")
+       (clear_local_git_env; cd "$sm_path" && GIT_WORK_TREE=. git config core.worktree "$rel/$b")
  }
  
  #