Fix symfony bug

This commit is contained in:
Matias Griese
2020-12-08 11:59:09 +02:00
parent 4d288ad2ee
commit e60e9fa3dd

View File

@@ -117,7 +117,8 @@ class ServerCommand extends ConsoleCommand
*/
protected function runProcess($name, $cmd)
{
$process = new Process([$cmd]);
// TODO: Fix when Symfony fixes the bug in the argument handling.
$process = new Process($cmd);
$process->setTimeout(0);
$process->start();