Changeset 84
- Timestamp:
- 07/10/06 12:30:51 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.2/classes/phing/tasks/ext/phpdoc/PHPDocumentorTask.php
r82 r84 135 135 throw new BuildException("Could not execute phpDocumentor: " . implode(' ', $output)); 136 136 } 137 138 foreach($output as $line) 139 { 140 if(strpos($line, 'ERROR') !== false) 141 { 142 $this->log($line, PROJECT_MSG_ERR); 143 continue; 144 } 145 146 $this->log($line, PROJECT_MSG_VERBOSE); 147 } 137 148 } 138 149 … … 151 162 if ($this->destdir) 152 163 { 153 $arguments.= "-t " . $this->destdir ." ";164 $arguments.= "-t \"" . $this->destdir . "\" "; 154 165 } 155 166 156 167 if ($this->sourcepath !== NULL) 157 168 { 158 $arguments.= "-d " . $this->sourcepath->__toString() ." ";169 $arguments.= "-d \"" . $this->sourcepath->__toString() . "\" "; 159 170 } 160 171
