From e12774af339c3282bf07a8bf9f60d6d854d70d21 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 2 Oct 2023 17:30:24 -0400 Subject: sbolint: check for *.rej files --- sbolint | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sbolint') diff --git a/sbolint b/sbolint index bf4b8ae..2d69b74 100755 --- a/sbolint +++ b/sbolint @@ -1671,6 +1671,10 @@ sub check_junkfiles { log_warning("$file is a build log"); next FILE; }; + /\.rej$/ && do { + log_warning("$file is a patch reject"); + next FILE; + }; /\.desktop$/ && do { system("desktop-file-validate $file"); if($? != 0) { -- cgit v1.2.3