Skip to content
Snippets Groups Projects
Commit dd31cc4b authored by GitLab CI's avatar GitLab CI
Browse files

Merge branch 'develop' into 'main'

Merging develop into main

See merge request !31
parents b6e3b897 7bd379d9
No related branches found
No related tags found
1 merge request!31Merging develop into main
Pipeline #1372512 passed
......@@ -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/');
}
}
/var/www/html/web/modules/custom/
/var/www/html/web/profiles/custom/
/var/www/html/web/recipes/custom/
/var/www/html/web/themes/custom/
......@@ -61,7 +61,6 @@
<include>
<directory>../web/modules/custom</directory>
<directory>../web/profiles/custom</directory>
<directory>../web/recipes/custom</directory>
<directory>../web/themes/custom</directory>
{% for path in coverage %}
<directory>{{ path }}</directory>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment