Process creation fixed

This commit is contained in:
Hauke 2020-09-10 09:21:33 +02:00 committed by GitHub
parent b0a54cfdc2
commit eb561f9a0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -405,7 +405,7 @@ class Runtime
{
$this->log($cmd, LogLevel::INFO);
$process = new Process([$cmd]);
$process = Process::fromShellCommandline($cmd);
$process->setTimeout($timeout);
$process->run();