Commit 288c2629 authored by Simo Fält's avatar Simo Fält Committed by The Qt Project
Browse files

Getting prepared for relative submodule specs


.gitmodules file may have relative submodule paths instead of full
url.

Change-Id: Ib4f00cb2a75a00ffdb7465b669354e0bf7bab1f9
Reviewed-by: default avatarOswald Buddenhagen <oswald.buddenhagen@digia.com>
Reviewed-by: default avatarTony Sarajärvi <tony.sarajarvi@digia.com>
Reviewed-by: default avatarJanne Anttila <janne.anttila@digia.com>
No related merge requests found
Showing with 6 additions and 0 deletions
...@@ -266,6 +266,12 @@ sub update_submodule ...@@ -266,6 +266,12 @@ sub update_submodule
confess "Command `@cmd' did not output a giturl"; confess "Command `@cmd' did not output a giturl";
} }
# Let's be prepared for relative paths in .gitmodules
if ($giturl eq "../$submodule.git") {
$giturl = trim $self->exe( qw(git config --file), ".git/config", "remote.origin.url" );
$giturl =~ s,[^/]+$,$submodule.git,;
}
chdir catfile($base_dir, $submodule); chdir catfile($base_dir, $submodule);
$self->exe( qw(git fetch --verbose), $giturl, "+$ref:refs/heads/updated_submodule" ); $self->exe( qw(git fetch --verbose), $giturl, "+$ref:refs/heads/updated_submodule" );
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment