aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2018-05-22 01:22:48 -0400
committerB. Watson <yalhcru@gmail.com>2018-05-22 01:22:48 -0400
commitf864a6c422227921ac5b6e57a0ebf58647364d41 (patch)
tree333bc5e7a58760909d9b0a40898e45c54a680e06
parent7244ed21737d14fe4589cf862f594e4ff82f7b40 (diff)
downloadsbostuff-f864a6c422227921ac5b6e57a0ebf58647364d41.tar.gz
Don't include blacklisted builds in check/status output
-rwxr-xr-xsbosrcarch4
1 files changed, 4 insertions, 0 deletions
diff --git a/sbosrcarch b/sbosrcarch
index ea74f43..a73908c 100755
--- a/sbosrcarch
+++ b/sbosrcarch
@@ -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;