Skip to content
Snippets Groups Projects

Merging develop into main

Merged GitLab CI requested to merge develop into main
3 files
+ 4
4
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 4
2
@@ -70,11 +70,10 @@ class Handler extends BaseHandler {
// Directory where this plugin is being installed.
$pluginRoot = $installationManager->getInstallPath($this->getPackage('lakedrops/drupal-development-environment'));
// Create contrib/custom dirs for modules, profiles, recipes and themes.
// Create contrib/custom dirs for modules, profiles and themes.
foreach ([
$webRoot . '/modules',
$webRoot . '/profiles',
$webRoot . '/recipes',
$webRoot . '/themes',
] as $dir) {
foreach (['contrib', 'custom'] as $subdir) {
@@ -149,6 +148,9 @@ class Handler extends BaseHandler {
// Git Ignore output from simpletest.
$this->gitIgnore('web/sites/simpletest');
// Git Ignore recipes.
$this->gitIgnore('/recipes/');
}
}
Loading