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

Commit

Permalink
Issue #726, #720, #727: Fix permissions on the synced folder for comp…
Browse files Browse the repository at this point in the history
…oser project build.
  • Loading branch information
geerlingguy committed Jun 29, 2016
1 parent 92f3d20 commit 1a82cc3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions provisioning/tasks/build-composer-project.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
---
- name: Ensure drupal_composer_install_dir directory has proper permissions.
file:
path: "{{ drupal_composer_install_dir }}"
state: directory
owner: "{{ drupalvm_user }}"
group: "{{ drupalvm_user }}"
mode: 0775
when: not drupal_site_exists
failed_when: false

- name: Generate Drupal project with composer package.
command: >
{{ composer_path }} create-project
Expand Down

0 comments on commit 1a82cc3

Please sign in to comment.