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

Commit

Permalink
Fixes #726: Ensure correct permissions when using Composer create-pro…
Browse files Browse the repository at this point in the history
…ject.
  • Loading branch information
geerlingguy committed Jun 13, 2016
1 parent 7344434 commit 4ffd60d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions provisioning/tasks/build-composer-project.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
---
- 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

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

0 comments on commit 4ffd60d

Please sign in to comment.