From 9570e12ec7c9a258b278478e05e483c24f4dfab3 Mon Sep 17 00:00:00 2001 From: Matt Stauffer Date: Thu, 11 Apr 2019 08:22:17 -0400 Subject: [PATCH] Revert new fromShellCommandLine call --- cli/Valet/CommandLine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/Valet/CommandLine.php b/cli/Valet/CommandLine.php index 0ef48ff..c59bc8e 100644 --- a/cli/Valet/CommandLine.php +++ b/cli/Valet/CommandLine.php @@ -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) {