From 16eff6c009c0af430975d44c0af98262f1edb549 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Wed, 18 Mar 2015 15:02:01 -0400 Subject: [PATCH] clone: drop period from end of die_errno message We do not usually end our errors with a full stop, but it looks especially bad when you use die_errno, which adds a colon, like: fatal: could not create work tree dir 'foo'.: No such file or directory Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- builtin/clone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/clone.c b/builtin/clone.c index ee24162ca4..3c5ba0ab25 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -849,7 +849,7 @@ int cmd_clone(int argc, const char **argv, const char *prefix) die_errno(_("could not create leading directories of '%s'"), work_tree); if (!dest_exists && mkdir(work_tree, 0777)) - die_errno(_("could not create work tree dir '%s'."), + die_errno(_("could not create work tree dir '%s'"), work_tree); junk_work_tree = work_tree; set_git_work_tree(work_tree); -- 2.11.4.GIT