Skip to content

Commit 79e85f2

Browse files
committed
[163] Fix directory name and put quotes around command
1 parent 9620160 commit 79e85f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.ddev/commands/host/setup-drupal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ if [ ${DDEV_MUTAGEN_ENABLED} ]; then
3030
ddev mutagen sync || true
3131
fi
3232

33-
INSTALL_PACKAGES=npm install --package-lock-only && npm ci && pm2 restart all
33+
INSTALL_PACKAGES="npm install --package-lock-only && npm ci && pm2 restart all"
3434

3535
ddev exec -s=frontend "${INSTALL_PACKAGES}" || ddev exec "${INSTALL_PACKAGES}"

starterkits/drupal/docker-compose.frontend.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
- 3000
99
- 6006
1010
volumes:
11-
- ./../next:/var/www/html/frontend:cached
11+
- ./../frontend:/var/www/html/frontend:cached
1212
- ".:/mnt/ddev_config"
1313
- ddev-global-cache:/mnt/ddev-global-cache
1414
working_dir: /var/www/html/frontend

0 commit comments

Comments
 (0)