From f447cc2e73ea707c2f4694507e9c7847fcff29e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Fri, 15 Oct 2021 21:27:22 +0300 Subject: [PATCH] refactor(git): use a better error message for invalid repo path --- git-cliff-core/src/repo.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-cliff-core/src/repo.rs b/git-cliff-core/src/repo.rs index 334770b31d..b29e68fb32 100644 --- a/git-cliff-core/src/repo.rs +++ b/git-cliff-core/src/repo.rs @@ -28,7 +28,7 @@ impl Repository { } else { Err(Error::IoError(io::Error::new( io::ErrorKind::NotFound, - "path not found", + "repository path not found", ))) } }