You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#ddev-description:Check for global 'browser-sync.js'
24
-
if ( test -f "$HOME/.ddev/commands/web/browsersync" ) ; then
25
-
echo "Note: '~/.ddev/commands/web/browsersync' is no longer required and can be safely removed." && exit 0
26
-
fi
27
-
#ddev-description:Check for 'browser-sync.js'
28
-
if ( test -f "$DDEV_APPROOT/commands/web/browsersync.js" ) ; then
29
-
echo "Note: '$DDEV_APPROOT/commands/web/browsersync.js' is no longer required and can be safely removed." && exit 0
30
-
fi
31
-
#ddev-nodisplay
32
-
#ddev-description:Remove old 'docker-compose.browsersync.yaml'
33
-
if grep "#ddev-generated" $DDEV_APPROOT/.ddev/docker-compose.browsersync.yaml 2>/dev/null; then rm -f "$DDEV_APPROOT/.ddev/docker-compose.browsersync.yaml"; fi
34
-
#ddev-description:Install browsersync settings for WordPress if applicable
35
-
scripts/setup-wordpress-settings.sh
15
+
- |
16
+
#ddev-nodisplay
17
+
#ddev-description:Check for global browsersync
18
+
if test -f "$HOME/.ddev/commands/web/browsersync"; then
19
+
echo "Note: '~/.ddev/commands/web/browsersync' is no longer required and can be safely removed." && exit 0
20
+
fi
21
+
- |
22
+
#ddev-nodisplay
23
+
#ddev-description:Check for 'browser-sync.js'
24
+
if test -f "$DDEV_APPROOT/commands/web/browsersync.js"; then
25
+
echo "Note: '$DDEV_APPROOT/commands/web/browsersync.js' is no longer required and can be safely removed." && exit 0
26
+
fi
27
+
- |
28
+
#ddev-nodisplay
29
+
#ddev-description:Remove old 'docker-compose.browsersync.yaml'
30
+
if grep "#ddev-generated" $DDEV_APPROOT/.ddev/docker-compose.browsersync.yaml 2>/dev/null; then
0 commit comments