Fix installation command, part 2

This commit is contained in:
Franz Liedke 2018-09-22 17:45:38 +02:00
parent def0023382
commit ad74488af8

View File

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