mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #49637 from nextcloud/fix/app-remove-wording
fix: Correct wording when attempting to remove a disabled app
This commit is contained in:
commit
416c8ead40
1 changed files with 2 additions and 2 deletions
|
|
@ -49,9 +49,9 @@ class Remove extends Command implements CompletionAwareInterface {
|
|||
protected function execute(InputInterface $input, OutputInterface $output): int {
|
||||
$appId = $input->getArgument('app-id');
|
||||
|
||||
// Check if the app is installed
|
||||
// Check if the app is enabled
|
||||
if (!$this->manager->isInstalled($appId)) {
|
||||
$output->writeln($appId . ' is not installed');
|
||||
$output->writeln($appId . ' is not enabled');
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue