Changeset 61


Ignore:
Timestamp:
05/04/06 12:19:35 (4 years ago)
Author:
mrook
Message:

Change syntax for 'quiet' option, add some logging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/classes/phing/tasks/ext/phpdoc/PHPDocumentorTask.php

    r59 r61  
    111111                        $arguments = $this->constructArguments(); 
    112112                         
    113                         exec(self::PHPDOC . " " . $arguments, $output, $retval); 
     113                        $this->log("Running phpDocumentor..."); 
     114                         
     115                        exec(self::PHPDOC . " " . $arguments, $output, $return); 
     116                         
     117                        if ($return != 0) 
     118                        { 
     119                                throw new BuildException("Could not execute ionCube Encoder: " . implode(' ', $output)); 
     120                        } 
    114121                } 
    115122                 
     
    119126                private function constructArguments() 
    120127                { 
    121                         $arguments = "-q "; 
     128                        $arguments = "-q on "; 
    122129                         
    123130                        if ($this->title) 
Note: See TracChangeset for help on using the changeset viewer.