Skip to content

Commit 0117b68

Browse files
committed
git: explicitly don't validate the output of gpg signatures
Fixes #64 Signed-off-by: Vincent Batts <[email protected]>
1 parent a982232 commit 0117b68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/commits.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func checkRevList(commitrange string) (string, error) {
5757
// no issues, return now
5858
return commitrange, nil
5959
}
60-
cmdArgs = []string{"git", "log", "--pretty=oneline"}
60+
cmdArgs = []string{"git", "log", "--pretty=oneline", "--no-show-signature"}
6161
if debug() {
6262
logrus.Infof("[git] cmd: %q", strings.Join(cmdArgs, " "))
6363
}

0 commit comments

Comments
 (0)