Skip to content
Snippets Groups Projects
Commit 3e8b025f authored by Morris Jobke's avatar Morris Jobke
Browse files

Merge pull request #22417 from owncloud/issue-22389-duplicate-output-message

Remove inaccurate "is already enabled" message
parents 1cb3583a 4eef8afe
No related branches found
No related tags found
No related merge requests found
...@@ -70,10 +70,6 @@ class Enable extends Command { ...@@ -70,10 +70,6 @@ class Enable extends Command {
} }
$groups = $input->getOption('groups'); $groups = $input->getOption('groups');
if ($this->manager->isInstalled($appId) && empty($groups)) {
$output->writeln($appId . ' is already enabled');
}
if (empty($groups)) { if (empty($groups)) {
\OC_App::enable($appId); \OC_App::enable($appId);
$output->writeln($appId . ' enabled'); $output->writeln($appId . ' enabled');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment