We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa765b4 commit 77a2484Copy full SHA for 77a2484
src/Traits/RunProcess.php
@@ -15,7 +15,7 @@ trait RunProcess
15
*/
16
protected function runProcess($command, $path)
17
{
18
- $process = (new Process($command, $path))->setTimeout(null);
+ $process = (new Process(explode(" ", $command), $path))->setTimeout(null);
19
20
if ('\\' !== DIRECTORY_SEPARATOR && file_exists('/dev/tty') && is_readable('/dev/tty')) {
21
$process->setTty(true);
0 commit comments