1
0
mirror of https://github.com/git/git.git synced 2025-04-18 00:55:56 +00:00

Merge branch 'bw/submodule-sed-solaris' into maint

By Ben Walton
* bw/submodule-sed-solaris:
  Avoid bug in Solaris xpg4/sed as used in submodule
This commit is contained in:
Junio C Hamano 2012-05-10 10:27:58 -07:00
commit c83645a642

@ -167,10 +167,11 @@ 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"
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")
}