Skip to content

Commit

Permalink
fix: make removal smoother and successful (#26)
Browse files Browse the repository at this point in the history
Co-authored-by: Sally Young <git@justa.fish>
  • Loading branch information
rfay and justafish authored Apr 29, 2024
1 parent 90582df commit 311758c
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ post_install_actions:
- cd ../core && ddev yarn

removal_actions:
- rm core/phpunit.xml
- rm -rf test_output
- rm core/.env
- rm .gitignore
- |
for item in ../core/phpunit.xml ../core/.env ../.gitignore; do
if grep '#ddev-generated' ${item} >/dev/null; then
rm -f ${item}
fi
done
- rm -rf ../test_output

0 comments on commit 311758c

Please sign in to comment.