From c18a46286383c1645a5af830dd16558eb3a8f31f Mon Sep 17 00:00:00 2001 From: Nicolas Brassard Date: Wed, 7 Aug 2024 14:30:37 -0400 Subject: [PATCH] (fix) Turns out it is 755 and 644 --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 8246cd9..851730e 100644 --- a/install.sh +++ b/install.sh @@ -35,8 +35,8 @@ echo "Install craft" ${INSTALLER_PHP_EXEC} ~/composer.phar create-project "craftcms/craft:^4" . # Fix broken permissions set by craft -chmod 750 web -chmod 640 web/index.php web/.htaccess +chmod 755 web +chmod 644 web/index.php web/.htaccess echo "Download latest phar version of composer" wget https://getcomposer.org/download/latest-2.x/composer.phar