Skip to content

Commit

Permalink
Item14233: Really get the topic text.
Browse files Browse the repository at this point in the history
  • Loading branch information
gac410 committed Nov 26, 2016
1 parent de9f418 commit 4076452
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/tools/check_extensions.pl
Expand Up @@ -76,7 +76,7 @@ END
my $taskinfo = get_task_info($item);
print "WARNING: Wrong state: $taskinfo\n"
unless $taskinfo =~ m/Waiting for Release/;
next if $topicText =~ m/\b$item\b/;
next if $topicText =~ m/$item\b/;
print "MISSING: from change log: $taskinfo\n";

}
Expand Down Expand Up @@ -211,10 +211,10 @@ sub get_ext_topic {
my $file = "$ext/data/System/$ext.txt";

open( my $mf, '<', "$file" ) or die "Unable to open $file";
local $/ = undef;
local $/;
my $topicText = <$mf>;
close $mf;
return $mf;
return $topicText;
}

sub get_ext_info {
Expand Down

0 comments on commit 4076452

Please sign in to comment.