Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Drupal Development Environment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Composer
plugin
Drupal Development Environment
Commits
7bd379d9
Commit
7bd379d9
authored
3 months ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
drupal-environment#21
Clean-up recipe storage and setup
parent
24592880
Branches
develop
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!31
Merging develop into main
Pipeline
#1372506
passed
3 months ago
Stage: build
Stage: validate
Stage: release
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/Handler.php
+4
-2
4 additions, 2 deletions
src/Handler.php
templates/tests/phpcs.files
+0
-1
0 additions, 1 deletion
templates/tests/phpcs.files
templates/tests/phpunit.xml.dist
+0
-1
0 additions, 1 deletion
templates/tests/phpunit.xml.dist
with
4 additions
and
4 deletions
src/Handler.php
+
4
−
2
View file @
7bd379d9
...
...
@@ -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/'
);
}
}
This diff is collapsed.
Click to expand it.
templates/tests/phpcs.files
+
0
−
1
View file @
7bd379d9
/var/www/html/web/modules/custom/
/var/www/html/web/profiles/custom/
/var/www/html/web/recipes/custom/
/var/www/html/web/themes/custom/
This diff is collapsed.
Click to expand it.
templates/tests/phpunit.xml.dist
+
0
−
1
View file @
7bd379d9
...
...
@@ -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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment