From baede9f803ff7becab815481b004bc983d0422c7 Mon Sep 17 00:00:00 2001 From: Johan Herland Date: Mon, 22 Sep 2008 18:08:31 +0200 Subject: [PATCH] Fix submodule sync with relative submodule URLs Signed-off-by: Johan Herland Signed-off-by: Shawn O. Pearce --- git-submodule.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/git-submodule.sh b/git-submodule.sh index 1c39b593a6..92be0feb58 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -634,6 +634,14 @@ cmd_sync() do name=$(module_name "$path") url=$(git config -f .gitmodules --get submodule."$name".url) + + # Possibly a url relative to parent + case "$url" in + ./*|../*) + url=$(resolve_relative_url "$url") || exit + ;; + esac + if test -e "$path"/.git then ( -- 2.11.4.GIT