Skip to content

Commit

Permalink
Rename a couple of missed calls to getBootstrap to bootstrap.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Mar 8, 2016
1 parent ea425dc commit e955c91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/core/drupal/environment.inc
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ function drush_module_disable($modules) {
function drush_module_uninstall($modules) {
\Drupal::service('module_installer')->uninstall($modules);
// Our logger got blown away during the container rebuild above.
$boot = \Drush::bootstrapManager()->getBootstrap();
$boot = \Drush::bootstrapManager()->bootstrap();
$boot->add_logger();
}

Expand Down Expand Up @@ -319,7 +319,7 @@ function drush_theme_disable($themes) {
function drush_theme_uninstall($themes) {
\Drupal::service('theme_handler')->uninstall($themes);
// Our logger got blown away during the container rebuild above.
$boot = \Drush::bootstrapManager()->getBootstrap();
$boot = \Drush::bootstrapManager()->bootstrap();
$boot->add_logger();
}

Expand Down

0 comments on commit e955c91

Please sign in to comment.