protected function isFileChanged(Gpf_Io_File $source, Gpf_Io_File $target)
 {
     if (!$this->installedTemplate->isPersistent()) {
         return parent::isFileChanged($source, $target);
     }
     return $this->installedTemplate->getContentHash() != md5($target->getContents());
 }