We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90582df commit 311758cCopy full SHA for 311758c
install.yaml
@@ -30,7 +30,10 @@ post_install_actions:
30
- cd ../core && ddev yarn
31
32
removal_actions:
33
- - rm core/phpunit.xml
34
- - rm -rf test_output
35
- - rm core/.env
36
- - rm .gitignore
+ - |
+ for item in ../core/phpunit.xml ../core/.env ../.gitignore; do
+ if grep '#ddev-generated' ${item} >/dev/null; then
+ rm -f ${item}
37
+ fi
38
+ done
39
+ - rm -rf ../test_output
0 commit comments