From b0a54cfdc2e1e72e547f44218f1ee473156ecfdf Mon Sep 17 00:00:00 2001 From: Hauke Date: Thu, 10 Sep 2020 08:58:48 +0200 Subject: [PATCH] Fixed process initialization --- src/Runtime/Runtime.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runtime/Runtime.php b/src/Runtime/Runtime.php index 5b7368d..f8ec6e8 100644 --- a/src/Runtime/Runtime.php +++ b/src/Runtime/Runtime.php @@ -405,7 +405,7 @@ class Runtime { $this->log($cmd, LogLevel::INFO); - $process = new Process($cmd); + $process = new Process([$cmd]); $process->setTimeout($timeout); $process->run();