Skip to content
This repository was archived by the owner on Feb 13, 2023. It is now read-only.

Commit 1a82cc3

Browse files
committed
Issue #726, #720, #727: Fix permissions on the synced folder for composer project build.
1 parent 92f3d20 commit 1a82cc3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

provisioning/tasks/build-composer-project.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
---
2+
- name: Ensure drupal_composer_install_dir directory has proper permissions.
3+
file:
4+
path: "{{ drupal_composer_install_dir }}"
5+
state: directory
6+
owner: "{{ drupalvm_user }}"
7+
group: "{{ drupalvm_user }}"
8+
mode: 0775
9+
when: not drupal_site_exists
10+
failed_when: false
11+
212
- name: Generate Drupal project with composer package.
313
command: >
414
{{ composer_path }} create-project

0 commit comments

Comments
 (0)