From 61583dfcd0181723c1ef633143853b89f084e39a Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Tue, 16 Jun 2026 06:17:14 +0200 Subject: [PATCH] Update RunCommand.php --- issue-bot/src/Console/RunCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/issue-bot/src/Console/RunCommand.php b/issue-bot/src/Console/RunCommand.php index b229137309..a35f300766 100644 --- a/issue-bot/src/Console/RunCommand.php +++ b/issue-bot/src/Console/RunCommand.php @@ -236,7 +236,7 @@ private function analyseHash(LoopInterface $loop, OutputInterface $output, int $ try { $json = Json::decode($stdout, Json::FORCE_ARRAY); } catch (Throwable $e) { - echo $stdout . "\n"; + $output->writeln($stdout); throw new Exception(sprintf('Failed to decode JSON for %s: %s', $hash, $e->getMessage())); }