phpci->findBinary('phing.sh'); $cmd[] = 'sh ' . $phingExecutable . ' -f ' . $this->getBuildFilePath(); if ($this->getPropertyFile()) { $cmd[] = '-propertyfile ' . $this->getPropertyFile(); } $cmd[] = $this->propertiesToString(); $cmd[] = '-logger phing.listener.DefaultLogger'; $cmd[] = $this->targetsToString(); $cmd[] = '2>&1'; return $this->phpci->executeCommand(implode(' ', $cmd), $this->directory, $this->targets); } }