diff options
author | Daniel Barkalow <barkalow@iabervon.org> | 2007-09-29 19:39:54 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-29 23:36:02 -0700 |
commit | fe50eef59b049588b7dc9b5e02707084f0516b7f (patch) | |
tree | 169aa2c26d88ea72c644fdf96b972f0e2988f233 /git-submodule.sh | |
parent | 6982ccecaf32ebf8adfcb66b4225da3b46255621 (diff) | |
download | git-fe50eef59b049588b7dc9b5e02707084f0516b7f.tar.gz |
Fix adding a submodule with a remote url
Without this, a non-path URL gets lost before the clone.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-x | git-submodule.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-submodule.sh b/git-submodule.sh index 727b1d3206..4aaaaab0d8 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -138,8 +138,8 @@ module_add() # it is local if base=$(get_repo_base "$repo"); then repo="$base" - realrepo=$repo fi + realrepo=$repo ;; esac |