From b2bdc11330ea5b984cdaec8b22b2f4968daafe69 Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Fri, 28 Mar 2014 13:53:12 -0700 Subject: [PATCH] Fix a typo in an error message --- commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.cpp b/commands.cpp index ee48b3e..f7b60f3 100644 --- a/commands.cpp +++ b/commands.cpp @@ -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;