diff options
author | Jens Lehmann <Jens.Lehmann@web.de> | 2010-12-05 00:27:35 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-12-06 16:42:07 -0800 |
commit | 69e7236c6df44bfcde8913972b75a6ccb360d58f (patch) | |
tree | 3858142dcbd1a82116ce8e26bf6afebf4b610727 /git-submodule.sh | |
parent | git submodule -b ... of current HEAD fails (diff) | |
download | tgif-69e7236c6df44bfcde8913972b75a6ccb360d58f.tar.xz |
git submodule: Remove now obsolete tests before cloning a repo
Since 55892d23 "git clone" itself checks that the destination path is not
a file but an empty directory if it exists, so there is no need anymore
for module_clone() to check that too.
Two tests have been added to test the behavior of "git submodule add" when
path is a file or a directory (A subshell had to be added to the former
last test to stay in the right directory).
Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-x | git-submodule.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/git-submodule.sh b/git-submodule.sh index 09107467fe..a84418f1aa 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -93,20 +93,6 @@ module_clone() url=$2 reference="$3" - # If there already is a directory at the submodule path, - # expect it to be empty (since that is the default checkout - # action) and try to remove it. - # Note: if $path is a symlink to a directory the test will - # succeed but the rmdir will fail. We might want to fix this. - if test -d "$path" - then - rmdir "$path" 2>/dev/null || - die "Directory '$path' exists, but is neither empty nor a git repository" - fi - - test -e "$path" && - die "A file already exist at path '$path'" - if test -n "$reference" then git-clone "$reference" -n "$url" "$path" |