From 8ea8526635ac0e23f98efb218b5530e0c593de30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Planchat?= Date: Tue, 21 Nov 2023 14:57:55 +0100 Subject: [PATCH] Migrated code from symfony/process to react/child-process --- src/Console/Command/RunCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Console/Command/RunCommand.php b/src/Console/Command/RunCommand.php index 80366b05..f214c0b1 100644 --- a/src/Console/Command/RunCommand.php +++ b/src/Console/Command/RunCommand.php @@ -115,6 +115,7 @@ private function dataflowWorker(Console\Style\SymfonyStyle $style, string $cwd, $command = ['php', '-r', '--']; $process = new Process(implode (' ', array_map(fn ($part) => escapeshellarg($part), $command)), $cwd); + $process->start(); $input->pipe($process->stdin);