Skip to content

Commit 77a2484

Browse files
committed
wip
1 parent fa765b4 commit 77a2484

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Traits/RunProcess.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ trait RunProcess
1515
*/
1616
protected function runProcess($command, $path)
1717
{
18-
$process = (new Process($command, $path))->setTimeout(null);
18+
$process = (new Process(explode(" ", $command), $path))->setTimeout(null);
1919

2020
if ('\\' !== DIRECTORY_SEPARATOR && file_exists('/dev/tty') && is_readable('/dev/tty')) {
2121
$process->setTty(true);

0 commit comments

Comments
 (0)