Ignore:
Timestamp:
2008/03/17 17:15:46 (16 years ago)
Author:
adachi
Message:

ファイルがない場合にWarningが出力されるのを修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2/data/class/batch/SC_Batch_Update.php

    r17132 r17159  
    124124                        } 
    125125 
    126                         if ($sha1 == sha1_file($out)) { 
     126                        if (file_exists($out) && $sha1 == sha1_file($out)) { 
    127127                            $msg = "同じ内容のファイルをスキップしました: " . $out; 
    128128                            $this->printLog($msg); 
     129                            continue; 
    129130                        } 
    130131 
Note: See TracChangeset for help on using the changeset viewer.