aboutsummaryrefslogtreecommitdiff
path: root/sbolint
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2023-10-02 17:30:24 -0400
committerB. Watson <urchlay@slackware.uk>2023-10-02 17:30:24 -0400
commite12774af339c3282bf07a8bf9f60d6d854d70d21 (patch)
tree86a9a862b0b733939cc9f2b93887b39a069c6042 /sbolint
parentb6e11c03286e9c211b1d7bad31a71506893a0b35 (diff)
downloadsbo-maintainer-tools-e12774af339c3282bf07a8bf9f60d6d854d70d21.tar.gz
sbolint: check for *.rej files
Diffstat (limited to 'sbolint')
-rwxr-xr-xsbolint4
1 files changed, 4 insertions, 0 deletions
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) {