From af2af91300bab49cde45c558e5f46e64aa4c4f28 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 11 Nov 2008 02:21:25 -0800 Subject: [PATCH] Take-two at fixing bug 3410. --- tools/buildbot/symstore.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/buildbot/symstore.pl b/tools/buildbot/symstore.pl index b1e95eec..21067700 100755 --- a/tools/buildbot/symstore.pl +++ b/tools/buildbot/symstore.pl @@ -48,10 +48,10 @@ for ($i = 0; $i <= $#files; $i++) opendir(DIR, "..\\..\\symstore\\$file"); @subdirs = readdir(DIR); closedir(DIR); - for ($j = 0; $j < $#subdirs; $j++) + for ($j = 0; $j <= $#subdirs; $j++) { next unless ($subdirs[$j] =~ /[A-Z]/); - Build::Command("rename ..\\..\\symstore\\$file\\" . $subdirs[$j] . " ..\\..\\symstore\\$file\\" . lc($subdirs[$j])); + Build::Command("rename ..\\..\\symstore\\$file\\" . $subdirs[$j] . " " . lc($subdirs[$j])); } }