diff options
author | B. Watson <urchlay@slackware.uk> | 2023-10-02 17:30:24 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2023-10-02 17:30:24 -0400 |
commit | e12774af339c3282bf07a8bf9f60d6d854d70d21 (patch) | |
tree | 86a9a862b0b733939cc9f2b93887b39a069c6042 /sbolint | |
parent | b6e11c03286e9c211b1d7bad31a71506893a0b35 (diff) | |
download | sbo-maintainer-tools-e12774af339c3282bf07a8bf9f60d6d854d70d21.tar.gz |
sbolint: check for *.rej files
Diffstat (limited to 'sbolint')
-rwxr-xr-x | sbolint | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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) { |