Skip to content

Commit

Permalink
Merge pull request #866 from MatBarba/mbarba/pepstats
Browse files Browse the repository at this point in the history
Check that pepstats is there. Merged even with failures on copyrights checks.
  • Loading branch information
marcoooo authored Feb 5, 2024
2 parents 85abe06 + 8d93d27 commit b0d1bc4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,9 @@ sub run_pepstats {
my $attribs = {};
my $tid;
close(OUT);
foreach my $line (@lines) {
die("pepstats command not found ($PEPSTATS)") if ($lines[0] =~ /command not found/);

foreach my $line (@lines) {
if ($line =~ /PEPSTATS of ([^ ]+)/) {
$tid = $1;
} elsif (defined $tid) {
Expand Down

0 comments on commit b0d1bc4

Please sign in to comment.