diff options
| -rwxr-xr-x | bin/sbodb.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sbodb.pl b/bin/sbodb.pl index fc2d3ec..3e4bc98 100755 --- a/bin/sbodb.pl +++ b/bin/sbodb.pl @@ -160,13 +160,13 @@ EOF open $tagstxt, "<" . $sbopath . "/TAGS.txt" or die $!; while(<$tagstxt>) { - my %seen; my ($build, $t, @tags); chomp; next if /: No tags found for/; ($build, $t) = /^([^:]*):\s+(.*)$/; @tags = split /,/, $t; for(@tags) { + my %seen; next if /^\s*$/; next if $seen{$_}++; s/'/''/g; |
