From fadcb3556b8540b509f21f4a842d73f983f25dc5 Mon Sep 17 00:00:00 2001 From: Christopher Vagnetoft Date: Thu, 8 Feb 2024 12:40:11 +0100 Subject: [PATCH] Bolt fixes --- config/frameworks/10-symfony.sh | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/config/frameworks/10-symfony.sh b/config/frameworks/10-symfony.sh index a6328be..17a5cde 100644 --- a/config/frameworks/10-symfony.sh +++ b/config/frameworks/10-symfony.sh @@ -44,18 +44,17 @@ case "$VARIANT" in "bolt") echo " -> Setting up BoltCMS directories..." # we get a warning about this - chmod a+rwx /bolt/config + chmod a+rwx /application/config # we don't want to get errors from these - chmod -R a+rwx /bolt/var - chmod -R a+rwx /bolt/var/data - chmod -R a+rwx /bolt/var/cache - chmod -R a+rwx /bolt/var/cache/prod - chmod -R a+rwx /bolt/var/log - echo " -> Configuring database..." - # TODO: Apply schema and migrations + chmod -R a+rwx /application/var + chmod -R a+rwx /application/var/data + chmod -R a+rwx /application/var/cache + chmod -R a+rwx /application/var/cache/prod + chmod -R a+rwx /application/var/log ;; esac + echo " -> Testing environment..." if ! bin/console about -q; then echo " ** Failed **"