8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07c46a2 commit a320133Copy full SHA for a320133
src/Symfony/Component/Process/Process.php
@@ -458,7 +458,7 @@ public function waitUntil(callable $callback): bool
458
459
foreach ($output as $type => $data) {
460
if (3 !== $type) {
461
- $ready = $ready || $callback(self::STDOUT === $type ? self::OUT : self::ERR, $data);
+ $ready = $callback(self::STDOUT === $type ? self::OUT : self::ERR, $data) || $ready;
462
} elseif (!isset($this->fallbackStatus['signaled'])) {
463
$this->fallbackStatus['exitcode'] = (int) $data;
464
}
0 commit comments