From d34e7df5cf247fd8e69e59ce13ecfb116de98287 Mon Sep 17 00:00:00 2001 From: Christopher Phillips Date: Fri, 3 Mar 2023 11:53:09 -0500 Subject: [PATCH] fix: return retErr Signed-off-by: Christopher Phillips --- internal/git/tag.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/git/tag.go b/internal/git/tag.go index 0996238..2fa0b42 100644 --- a/internal/git/tag.go +++ b/internal/git/tag.go @@ -83,7 +83,7 @@ func CommitsBetween(repoPath string, cfg Range) ([]string, error) { commits = append(commits, hash) } - return + return retErr }) return commits, err