Merge pull request #10642 from benbrummer/v5-develop
exclude vendor folder second attempt
This commit is contained in:
commit
45de74e62b
|
|
@ -58,7 +58,8 @@ jobs:
|
||||||
rm .env || true
|
rm .env || true
|
||||||
rm -rf ui || true
|
rm -rf ui || true
|
||||||
# Set permissions: directories 755, files 644
|
# 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
|
- name: Build project
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue