There was an error while loading. Please reload this page.
1 parent fa765b4 commit 77a2484Copy full SHA for 77a2484
1 file changed
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