Skip to content

Commit

Permalink
increased timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
wickedOne committed Jun 11, 2015
1 parent e3a1a10 commit ae093a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CompassElephant/CommandCaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public function compile($configFile, $force, $target)
*/
private function execute($cmd)
{
$process = new Process(escapeshellcmd($cmd), $this->projectPath);
$process = new Process(escapeshellcmd($cmd), $this->projectPath, null, null, 300);
$process->run();
if (!$process->isSuccessful()) {
throw new CompassException($process->getErrorOutput());
Expand Down

0 comments on commit ae093a8

Please sign in to comment.