From 554319e003f3b647d893049e64fab4f40e6fa446 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Wed, 7 Aug 2024 14:05:55 +0700 Subject: [PATCH] Update install.php --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index d5461b7ea..4de7a9de0 100644 --- a/install.php +++ b/install.php @@ -68,7 +68,7 @@ function runProcess(string $cmd, string $input = null): void // Read and print error output while (!feof($pipes[2])) { - echo stream_get_contents($pipes[2], 1); + out(stream_get_contents($pipes[2], 1), 'error'); flush(); }