do not break without a message

This commit is contained in:
Robert Kaiser 2013-12-19 15:44:10 +01:00
Родитель 912ce7f096
Коммит ea051353fc
1 изменённых файлов: 8 добавлений и 2 удалений

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

@ -72,7 +72,10 @@ foreach ($channels as $channel) {
// Make sure we have the crashdata csv.
if ($on_moz_server) {
$anafcsvgz = $url_csvbase.date('Ymd', $anatime).'/'.$fcsv.'.gz';
if (!file_exists($anafcsvgz)) { break; }
if (!file_exists($anafcsvgz)) {
print($anafcsvgz.' does not exist!')
continue;
}
}
else {
$anafcsv = $fcsv;
@ -81,7 +84,10 @@ foreach ($channels as $channel) {
$webcsvgz = $url_csvbase.date('Ymd', $anatime).'/'.$fcsv.'.gz';
if (copy($webcsvgz, $anafcsv.'.gz')) { shell_exec('gzip -d '.$anafcsv.'.gz'); }
}
if (!file_exists($anafcsv)) { break; }
if (!file_exists($anafcsv)) {
print($anafcsv.' does not exist!')
continue;
}
}
$min_builddate = strtotime(date('Y-m-d', $anatime).' -'.$max_build_age);