summaryrefslogtreecommitdiffstats
path: root/collectstats.pl
diff options
context:
space:
mode:
authorterry%netscape.com <>1998-11-10 08:19:37 +0100
committerterry%netscape.com <>1998-11-10 08:19:37 +0100
commit1cf02cc7c177a691ae9980f928ae30efb84a8c99 (patch)
tree235232c5fcc2e5d1fb13ad91e8b44da262c2a3f3 /collectstats.pl
parentd123c1dccda06bd3a89fbc0633921ba183384734 (diff)
downloadbugzilla-1cf02cc7c177a691ae9980f928ae30efb84a8c99.tar.gz
bugzilla-1cf02cc7c177a691ae9980f928ae30efb84a8c99.tar.xz
Patch by Sam Ziegler <ziegler@mediaguaranty.com> -- cope with product
names that have a "/" in them.
Diffstat (limited to 'collectstats.pl')
-rwxr-xr-xcollectstats.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/collectstats.pl b/collectstats.pl
index a40de3cf7..05e6204cb 100755
--- a/collectstats.pl
+++ b/collectstats.pl
@@ -34,6 +34,7 @@ GetVersionTable();
foreach (@::legal_product)
{
my $dir = "data/mining";
+
&check_data_dir ($dir);
&collect_stats ($dir, $_);
}
@@ -60,7 +61,7 @@ select count(bug_status) from bugs where
(bug_status='NEW' or bug_status='ASSIGNED' or bug_status='REOPENED')
and product='$product' group by bug_status
FIN
-
+ $product =~ s/\//-/gs;
my $file = join '/', $dir, $product;
my $exists = -f $file;