aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2021-11-30 19:24:26 +0100
committerJonas Smedegaard <dr@jones.dk>2021-11-30 19:24:26 +0100
commite8446d412e5d7621548f29e8fd358451d0191fb7 (patch)
tree8cbe45352b58ff37c7e1ac6b558f535a4a109428
parentf11a63adf61a882255074d4ba8c508035b4443e9 (diff)
feature-check: fix actually skip unacceptable features (not only log intended skipping)
-rwxr-xr-xbin/feature-check.pl3
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(