aboutsummaryrefslogtreecommitdiff
path: root/bin/sbodb.pl
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sbodb.pl')
-rwxr-xr-xbin/sbodb.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/sbodb.pl b/bin/sbodb.pl
index 3e4bc98..b209f7e 100755
--- a/bin/sbodb.pl
+++ b/bin/sbodb.pl
@@ -160,13 +160,14 @@ 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;
+ %seen = ();
for(@tags) {
- my %seen;
next if /^\s*$/;
next if $seen{$_}++;
s/'/''/g;