1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-05 16:40:05 +01:00

Revert new fromShellCommandLine call

This commit is contained in:
Matt Stauffer
2019-04-11 08:22:17 -04:00
parent dc7809907d
commit 9570e12ec7

View File

@@ -74,7 +74,7 @@ function runCommand($command, callable $onError = null)
{
$onError = $onError ?: function () {};
$process = Process::fromShellCommandline($command);
$process = new Process($command);
$processOutput = '';
$process->setTimeout(null)->run(function ($type, $line) use (&$processOutput) {