Skip to content
Snippets Groups Projects
Commit c6a30052 authored by jurgenhaas's avatar jurgenhaas
Browse files

Fix syntax for changed composer

parent 10368386
No related branches found
No related tags found
No related merge requests found
......@@ -25,12 +25,12 @@
tags: 'update'
- name: "Global Config Composer"
shell: COMPOSER_HOME={{ composer_home_path }}
shell: env COMPOSER_HOME={{ composer_home_path }}
composer global config --global {{ item }}
with_items: '{{ composer_config|default([]) }}'
- name: "Global require packages"
shell: COMPOSER_HOME={{ composer_home_path }}
shell: env COMPOSER_HOME={{ composer_home_path }}
composer global require {{ item.key }}:{{ item.value }} --no-progress
creates={{ composer_home_path }}/vendor/{{ item.key }}
with_dict: '{{ composer_global_packages|combine(composer_global_packages_base) }}'
......
......@@ -10,5 +10,5 @@
when: composer_date.stdout|int > composer_stat.stat.mtime|int
- name: "Update Composer Packages"
shell: COMPOSER_HOME={{ composer_home_path }}
shell: env COMPOSER_HOME={{ composer_home_path }}
composer global update
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment