Merge pull request #10642 from benbrummer/v5-develop

exclude vendor folder second attempt
This commit is contained in:
David Bomba 2025-03-05 08:09:18 +11:00 committed by GitHub
commit 45de74e62b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,8 @@ jobs:
rm .env || true
rm -rf ui || true
# Set permissions: directories 755, files 644
chmod -R a=r,u+w,a+X .
find . -path ./vendor -prune -o -type f -exec chmod 644 {} \+
find . -path ./vendor -prune -o -type d -exec chmod 755 {} \+
- name: Build project
run: |