Ignore incomplete logs when figuring out what branches and platforms

to display.
This commit is contained in:
Dag-Erling Smørgrav 2004-01-24 14:52:44 +00:00
parent d6a2cc66e2
commit 292d6f75a5

View File

@ -71,7 +71,7 @@ MAIN:{
opendir(DIR, $DIR)
or die("$DIR: $!\n");
foreach (readdir(DIR)) {
next unless m/^tinderbox-(\w+)-(\w+)-(\w+)\./;
next unless m/^tinderbox-(\w+)-(\w+)-(\w+)\.(brief|full)$/;
$BRANCHES{$1} = $ARCHES{$2}->{$3} = 1;
}
closedir(DIR);