diff --git a/core/Command/App/Update.php b/core/Command/App/Update.php index 01787bc4ecacb..dbf1d92ef507f 100644 --- a/core/Command/App/Update.php +++ b/core/Command/App/Update.php @@ -124,7 +124,11 @@ protected function execute(InputInterface $input, OutputInterface $output): int } if (!$updateFound) { - $output->writeln('All installed apps are up-to-date or no updates could be found'); + if ($singleAppId) { + $output->writeln($appId . ' is up-to-date or no updates could be found'); + } else { + $output->writeln('All apps are up-to-date or no updates could be found'); + } } return $return;