Update install.php

This commit is contained in:
Roman Kelesidis 2024-08-07 14:05:55 +07:00
commit 554319e003

View file

@ -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();
}