git: explicitly don't validate the output of gpg signatures

Fixes #64

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2023-10-23 09:21:42 -04:00
parent a982232157
commit 0117b68c53
Signed by: vbatts
GPG Key ID: E30EFAA812C6E5ED
1 changed files with 1 additions and 1 deletions

View File

@ -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, " "))
}