Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ansible/roles/drupal
  • max/drupal
  • ericzillmann/drupal
3 results
Show changes
Commits on Source (1)
......@@ -49,6 +49,15 @@
recurse: yes
follow: no
- name: Set Permissions for current user on composer cache
file:
path: /usr/local/share/cache
owner: '{{ ansible_env.SUDO_USER|default("root") }}'
group: root
mode: u+rwX,g+rwX,o+rX
recurse: yes
follow: no
- name: Run Composer
composer:
command: install
......