diff options
Diffstat (limited to 'core/Command/App/Install.php')
-rw-r--r-- | core/Command/App/Install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/App/Install.php b/core/Command/App/Install.php index 4e9c846cbd4..c8a396c8e36 100644 --- a/core/Command/App/Install.php +++ b/core/Command/App/Install.php @@ -58,7 +58,7 @@ class Install extends Command { $appId = $input->getArgument('app-id'); $forceEnable = (bool)$input->getOption('force'); - if ($this->appManager->isInstalled($appId)) { + if ($this->appManager->isEnabledForAnyone($appId)) { $output->writeln($appId . ' already installed'); return 1; } |