зеркало из https://github.com/microsoft/git.git
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 <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
ee0e38727f
Коммит
16eff6c009
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче