From 0484682ef326db0d3b99e71f6ca4551d0f5a4609 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 29 Sep 2009 07:42:25 +0200 Subject: [PATCH] typo fix: Directory `...' exist, ...: s/exist/exists/ Signed-off-by: Jim Meyering Signed-off-by: Shawn O. Pearce --- git-submodule.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" && -- 2.11.4.GIT