diff options
author | Jonas Smedegaard <dr@jones.dk> | 2021-11-30 19:24:26 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2021-11-30 19:24:26 +0100 |
commit | e8446d412e5d7621548f29e8fd358451d0191fb7 (patch) | |
tree | 8cbe45352b58ff37c7e1ac6b558f535a4a109428 /bin | |
parent | f11a63adf61a882255074d4ba8c508035b4443e9 (diff) |
feature-check: fix actually skip unacceptable features (not only log intended skipping)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/feature-check.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/feature-check.pl b/bin/feature-check.pl index b53f4a2..e2983ee 100755 --- a/bin/feature-check.pl +++ b/bin/feature-check.pl @@ -143,7 +143,8 @@ my @row; for my $feature ( sort keys %$featureref ) { my @target = @{ $featureref->{$feature}{target} }; - push @row, [ $feature, map { join ', ', sort keys %{ $target[$_]{docs} } if $target[$_]{maturity} >= $threshold } EXECUTIVE..EXPERT ]; + push @row, [ $feature, map { join ', ', sort keys %{ $target[$_]{docs} } if $target[$_]{maturity} >= $threshold } EXECUTIVE..EXPERT ] + if $featureref->{$feature}{maturity} >= $threshold; } my $table = Term::Table->new( |