1
0
Fork 0
mirror of https://github.com/vbatts/git-validation.git synced 2024-10-22 10:39:43 +00:00

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

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