From 0117b68c53ecab9192e758bb1b4a242ea78ace7b Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Mon, 23 Oct 2023 09:21:42 -0400 Subject: [PATCH] git: explicitly don't validate the output of gpg signatures Fixes #64 Signed-off-by: Vincent Batts --- git/commits.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/commits.go b/git/commits.go index 8bef00f..5d2d461 100644 --- a/git/commits.go +++ b/git/commits.go @@ -57,7 +57,7 @@ func checkRevList(commitrange string) (string, error) { // no issues, return now return commitrange, nil } - cmdArgs = []string{"git", "log", "--pretty=oneline"} + cmdArgs = []string{"git", "log", "--pretty=oneline", "--no-show-signature"} if debug() { logrus.Infof("[git] cmd: %q", strings.Join(cmdArgs, " ")) }