From e0b3ab5165118c6813123b9ab79ba8d2929a3a0c Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Tue, 3 Dec 2024 14:38:21 -0800 Subject: fix: Correct wording when attempting to remove a disabled app Signed-off-by: Christopher Ng --- core/Command/App/Remove.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core') diff --git a/core/Command/App/Remove.php b/core/Command/App/Remove.php index ee60fcc0827..2ea10930427 100644 --- a/core/Command/App/Remove.php +++ b/core/Command/App/Remove.php @@ -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; } -- cgit v1.2.3