diff options
author | B. Watson <yalhcru@gmail.com> | 2018-05-22 01:22:48 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2018-05-22 01:22:48 -0400 |
commit | f864a6c422227921ac5b6e57a0ebf58647364d41 (patch) | |
tree | 333bc5e7a58760909d9b0a40898e45c54a680e06 /sbosrcarch | |
parent | 7244ed21737d14fe4589cf862f594e4ff82f7b40 (diff) | |
download | sbostuff-f864a6c422227921ac5b6e57a0ebf58647364d41.tar.gz |
Don't include blacklisted builds in check/status output
Diffstat (limited to 'sbosrcarch')
-rwxr-xr-x | sbosrcarch | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1604,6 +1604,10 @@ sub check_info_wanted { return unless /\.info/; s,\./,,; my ($category, $prgnam, undef) = split /\//; + if(blacklisted("$category/$prgnam")) { + warn " $category/$prgnam blacklisted, skipping\n"; + return; + } my $dls = parse_info($_); $totalfiles += keys %$dls; $infofilecount{"$category/$prgnam"} += keys %$dls; |