mirror of
https://github.com/vbatts/git-validation.git
synced 2024-11-25 01:25:40 +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:
parent
a982232157
commit
0117b68c53
1 changed files with 1 additions and 1 deletions
|
@ -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, " "))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue