Bug 372939 - mochitest gets hung up on .swp files, if they are presentp=Ray Kiddy <ray@ganymede.org>r=sayrer

This commit is contained in:
asqueella@gmail.com 2007-04-27 09:48:53 -07:00
Родитель a23dc18327
Коммит 28121d230e
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -244,7 +244,9 @@ function list(requestPath, directory, recurse)
[links[key], childCount] = list(key, file, recurse);
count += childCount;
} else {
links[key] = true;
if (file.leafName.charAt(0) != '.') {
links[key] = true;
}
}
}