From e60e9fa3dd375ecd1147dbb7528259ab7daf9be1 Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Tue, 8 Dec 2020 11:59:09 +0200 Subject: [PATCH] Fix symfony bug --- system/src/Grav/Console/Cli/ServerCommand.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/system/src/Grav/Console/Cli/ServerCommand.php b/system/src/Grav/Console/Cli/ServerCommand.php index 41da25080..a438538a6 100644 --- a/system/src/Grav/Console/Cli/ServerCommand.php +++ b/system/src/Grav/Console/Cli/ServerCommand.php @@ -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();