diff options
author | Jim Meyering <meyering@redhat.com> | 2009-09-29 07:42:25 +0200 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2009-09-29 08:30:13 -0700 |
commit | 0484682ef326db0d3b99e71f6ca4551d0f5a4609 (patch) | |
tree | 9ea7e1a05f38003d2aaebdf1ce0d45b8db3edb03 /git-submodule.sh | |
parent | c9486ae847d346da44f3bd1aa964520a52d48e2a (diff) | |
download | git-0484682ef326db0d3b99e71f6ca4551d0f5a4609.tar.gz |
typo fix: Directory `...' exist, ...: s/exist/exists/
Signed-off-by: Jim Meyering <meyering@redhat.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
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 bfbd36b6f4..0462e529d9 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -98,7 +98,7 @@ module_clone() if test -d "$path" then rmdir "$path" 2>/dev/null || - die "Directory '$path' exist, but is neither empty nor a git repository" + die "Directory '$path' exists, but is neither empty nor a git repository" fi test -e "$path" && |