From cadd5197153576602a0f3ac45113f4c8ba0733fc Mon Sep 17 00:00:00 2001 From: Paul Fertser Date: Sat, 26 Oct 2013 11:24:43 +0400 Subject: [PATCH] checkpatch: treat jenkins as valid email MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This is needed to avoid checkpatch barking on already committed patches. Change-Id: Ic2b4cfa04c8230d45c68bbf6b370841f682b32d6 Signed-off-by: Paul Fertser Reviewed-on: http://openocd.zylin.com/1785 Tested-by: jenkins Reviewed-by: Jens Bauer Reviewed-by: Mathias Küster Reviewed-by: Spencer Oliver --- tools/scripts/checkpatch.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/scripts/checkpatch.pl b/tools/scripts/checkpatch.pl index eec68b7a0d..bc6b601731 100755 --- a/tools/scripts/checkpatch.pl +++ b/tools/scripts/checkpatch.pl @@ -446,6 +446,8 @@ sub parse_email { $address = ""; $comment = ""; } + } elsif ($formatted_email eq "jenkins") { + $address = "jenkins" } $name =~ s/^\s+|\s+$//g; -- 2.30.2