fixes bug 313963 "last-update.log not created if it does not already exist" r=bsmedberg

This commit is contained in:
darin%meer.net 2005-10-27 18:46:10 +00:00
Родитель f569af2d3c
Коммит cdac605e4d
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -349,7 +349,8 @@ function cleanUpUpdatesDir() {
var dir = f.parent.parent;
var logFile = dir.clone();
logFile.append(FILE_LAST_LOG);
logFile.remove(false);
if (logFile.exists())
logFile.remove(false);
f.copyTo(dir, FILE_LAST_LOG);
}
catch (e) {