Skip to content
Snippets Groups Projects

Merging develop into main

Merged GitLab CI requested to merge develop into main
3 files
+ 7
1
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 5
1
@@ -70,14 +70,18 @@ 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 and themes.
// Create contrib/custom dirs for modules, profiles, recipes and themes.
foreach ([
$webRoot . '/modules',
$webRoot . '/profiles',
$webRoot . '/recipes',
$webRoot . '/themes',
] as $dir) {
foreach (['contrib', 'custom'] as $subdir) {
$path = $dir . '/' . $subdir;
if ($subdir === 'contrib') {
$this->gitIgnore($path);
}
if (!$fs->exists($path)) {
$fs->mkdir($path, 0775);
}
Loading