mirror of
https://github.com/vbatts/git-validation.git
synced 2024-11-22 08:05:39 +00:00
Merge pull request #65 from vbatts/no_signatures
git: explicitly don't validate the output of gpg signatures
This commit is contained in:
commit
679e5cad8c
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