aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2024-12-18 15:52:23 +0100
committerRobin Appelman <robin@icewind.nl>2025-01-03 15:51:34 +0100
commit314955a64de3cdc5bc5808ec82e7af3c36a82360 (patch)
tree8ef938d0437c454c2e102545d6e30ee53799edb8 /core
parentb16f5a00435e9356cbbd757b7fadb5823d8f903a (diff)
downloadnextcloud-server-occ-upgrade-wording.tar.gz
nextcloud-server-occ-upgrade-wording.zip
fix: improve wording of occ:upgrade command when no upgrade is requiredocc-upgrade-wording
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'core')
-rw-r--r--core/Command/Upgrade.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php
index a9ed4cf2fd1..6220c9a70d4 100644
--- a/core/Command/Upgrade.php
+++ b/core/Command/Upgrade.php
@@ -20,6 +20,7 @@ use OC\Updater;
use OCP\EventDispatcher\Event;
use OCP\EventDispatcher\IEventDispatcher;
use OCP\IConfig;
+use OCP\IURLGenerator;
use OCP\Util;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Helper\ProgressBar;
@@ -36,6 +37,7 @@ class Upgrade extends Command {
public function __construct(
private IConfig $config,
+ private IURLGenerator $urlGenerator,
) {
parent::__construct();
}
@@ -205,7 +207,11 @@ class Upgrade extends Command {
. 'config.php and call this script again.</comment>', true);
return self::ERROR_MAINTENANCE_MODE;
} else {
- $output->writeln('<info>Nextcloud is already latest version</info>');
+ $output->writeln('<info>No upgrade required.</info>');
+ $output->writeln('');
+ $output->writeln('Note: This command triggers the upgrade actions associated with a new version. The new version\'s updated source files must be deployed in advance.');
+ $doc = $this->urlGenerator->linkToDocs('admin-update');
+ $output->writeln('See the upgrade documentation: ' . $doc . ' for more information.');
return self::ERROR_UP_TO_DATE;
}
}