Changeset 1101
- Timestamp:
- 09/07/08 12:49:50 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/arnoschn/cache/lib/utils/scripts/ci-test.php
r1100 r1101 588 588 $contents = ob_get_clean(); 589 589 590 file_put_contents($summaryFile, $contents); 590 $res = file_put_contents($summaryFile, $contents) > 0; 591 if ($res) { 592 $this->info('Summary Report available at: '.$summaryFile); 593 } else { 594 $this->error('Could not generate Summary Report: '.$summaryFile); 595 } 591 596 } 592 597 function _generateReport($xmlFile,$php,$env)
