From ae093a8c49165870fadc8282326f75ac5e01ad15 Mon Sep 17 00:00:00 2001 From: wickedOne Date: Thu, 11 Jun 2015 15:00:39 +0200 Subject: [PATCH] increased timeout --- src/CompassElephant/CommandCaller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CompassElephant/CommandCaller.php b/src/CompassElephant/CommandCaller.php index 0824ed3..5ced0cd 100644 --- a/src/CompassElephant/CommandCaller.php +++ b/src/CompassElephant/CommandCaller.php @@ -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());