diff --git a/.gitignore b/.gitignore index 940e4f062..fd4f8ab8b 100644 --- a/.gitignore +++ b/.gitignore @@ -30,5 +30,4 @@ autoload.local.php /nbproject/ # drupal/console-extend-plugin generated files -extend.console.config.yml -extend.console.services.yml +extend.console.*.yml diff --git a/src/Bootstrap/AddServicesCompilerPass.php b/src/Bootstrap/AddServicesCompilerPass.php index e86f85d27..a2c057243 100644 --- a/src/Bootstrap/AddServicesCompilerPass.php +++ b/src/Bootstrap/AddServicesCompilerPass.php @@ -57,7 +57,7 @@ public function process(ContainerBuilder $container) ); $loader->load($this->root. DRUPAL_CONSOLE_CORE . 'services.yml'); - $loader->load($this->root. DRUPAL_CONSOLE . 'services-drupal-install.yml'); + $loader->load($this->root. DRUPAL_CONSOLE . 'uninstall.services.yml'); $loader->load($this->root. DRUPAL_CONSOLE . 'services.yml'); $container->get('console.configuration_manager') diff --git a/services-drupal-install.yml b/uninstall.services.yml similarity index 100% rename from services-drupal-install.yml rename to uninstall.services.yml