Skip to content

Commit

Permalink
[console] Add missing parameter when initializing Drupal. (#3659)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmolivas authored Jan 8, 2018
1 parent 4db8f5a commit 9ae59ed
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Command/Site/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,11 @@ protected function execute(InputInterface $input, OutputInterface $output)
$this->runInstaller($io, $input, $database, $uri);

$autoload = $this->container->get('class_loader');
$drupal = new Drupal($autoload, $drupalFinder);
$drupal = new Drupal(
$autoload,
$drupalFinder,
$this->configurationManager
);
$container = $drupal->boot();
$this->getApplication()->setContainer($container);
} catch (Exception $e) {
Expand Down

0 comments on commit 9ae59ed

Please sign in to comment.