Fix a typo in an error message

This commit is contained in:
Andrew Ayer
2014-03-28 13:53:12 -07:00
parent df838947a0
commit b2bdc11330

View File

@@ -81,7 +81,7 @@ static std::string get_internal_key_path ()
std::stringstream output;
if (!successful_exit(exec_command("git rev-parse --git-dir", output))) {
throw Error("'git rev-parse --git-dir' - is this a Git repository?");
throw Error("'git rev-parse --git-dir' failed - is this a Git repository?");
}
std::string path;