git: use lower case in error message

This commit is contained in:
Joonas Koivunen 2017-04-17 15:08:51 +03:00
parent e9908c71e2
commit c9f86804ef
2 changed files with 2 additions and 2 deletions

View file

@ -295,7 +295,7 @@ impl<'a> GitCheckout<'a> {
for mut child in repo.submodules()?.into_iter() {
update_submodule(repo, &mut child, cargo_config).chain_error(|| {
human(format!("Failed to update submodule `{}`",
human(format!("failed to update submodule `{}`",
child.name().unwrap_or("")))
})?;
}

View file

@ -810,7 +810,7 @@ Caused by:
Unable to update {}
Caused by:
Failed to update submodule `src`
failed to update submodule `src`
To learn more, run the command again with --verbose.\n", path2url(git_project.root()));