1
0
mirror of https://github.com/flarum/core.git synced 2025-02-24 03:05:12 +01:00

Fix installation command, part 2

This commit is contained in:
Franz Liedke 2018-09-22 17:45:38 +02:00
parent 0fb9aa3940
commit aa70441632
No known key found for this signature in database
GPG Key ID: 9A0231A879B055F4

View File

@ -301,8 +301,6 @@ class InstallCommand extends AbstractCommand
$this->application->make('files')
);
$migrator = $extensions->getMigrator();
$disabled = [
'flarum-akismet',
'flarum-auth-facebook',
@ -319,10 +317,6 @@ class InstallCommand extends AbstractCommand
$this->info('Enabling extension: '.$name);
$extensions->enable($name);
foreach ($migrator->getNotes() as $note) {
$this->info($note);
}
}
}