diff options
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/check-patches | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/check-patches b/contrib/check-patches index 738b1816..7d171b53 100755 --- a/contrib/check-patches +++ b/contrib/check-patches @@ -11,7 +11,7 @@ for rev in $(git rev-list --reverse "$revision_range"); do total=$((total + 1)) title=$(git log --format='%s' -1 "$rev") - author=$(git log --format='%aN <%aE>' -1 "$rev") + author=$(git log --format='%an <%ae>' -1 "$rev") git log --format="%(trailers:key=Signed-off-by,only,valueonly)" -1 "$rev" | grep -qFx "$author" || { echo "error: '$title' 'Signed-off-by: $author' trailer is missing" >&2 |