-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathinstall.yaml
More file actions
21 lines (18 loc) · 724 Bytes
/
Copy pathinstall.yaml
File metadata and controls
21 lines (18 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: ddev-selenium-standalone-chrome
project_files:
- docker-compose.selenium-chrome.yaml
- config.selenium-standalone-chrome.yaml
ddev_version_constraint: '>= v1.24.10'
post_install_actions:
- |
#ddev-description:Checking for obsolete docker-compose.selenium-chrome_extras.yaml
file="$DDEV_APPROOT/.ddev/docker-compose.selenium-chrome_extras.yaml"
if [ -f "$file" ]; then
if grep -q '#ddev-generated' "$file"; then
echo "Removing existing docker-compose.selenium-chrome_extras.yaml, it's not needed anymore."
rm -f "$file"
else
echo "Unwilling to remove '$file' because it does not have #ddev-generated in it; please remove it manually."
exit 1
fi
fi