From 282a474a5e44fbb88fc8657d6b5fc1f8b09ef501 Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Mon, 19 Aug 2013 17:25:46 +0200 Subject: [PATCH] Fix timeout issue --- lib/Alchemy/Phrasea/Command/Developer/BowerInstall.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Alchemy/Phrasea/Command/Developer/BowerInstall.php b/lib/Alchemy/Phrasea/Command/Developer/BowerInstall.php index f872a67cd7..0a74af8be6 100644 --- a/lib/Alchemy/Phrasea/Command/Developer/BowerInstall.php +++ b/lib/Alchemy/Phrasea/Command/Developer/BowerInstall.php @@ -34,6 +34,8 @@ class BowerInstall extends Command protected function doExecute(InputInterface $input, OutputInterface $output) { $grunt = $this->container['driver.grunt']; + $grunt->getProcessBuilderFactory()->setTimeout(600); + $bower = $this->container['driver.bower']; $output->writeln("Using ".$grunt->getProcessBuilderFactory()->getBinary()." for driver");