[PATCH] testbot/WineSendLog: Print a message for non-mailing list jobs.
11 Jul
2018
11 Jul
'18
9:31 a.m.
WineSendLog exits early for these. Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com> --- testbot/bin/WineSendLog.pl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/testbot/bin/WineSendLog.pl b/testbot/bin/WineSendLog.pl index 29da4a04d..f095bce8d 100755 --- a/testbot/bin/WineSendLog.pl +++ b/testbot/bin/WineSendLog.pl @@ -426,7 +426,11 @@ EOF close(SENDMAIL); # This is all for jobs submitted from the website - return if (!defined $Job->Patch); + if (!defined $Job->Patch) + { + Debug("Not a mailing list patch -> all done.\n"); + return; + } # # Build a job summary with only the new errors -- 2.18.0
2716
Age (days ago)
2716
Last active (days ago)
0 comments
1 participants
participants (1)
-
Francois Gouget