Modify to not use raw variables that are deprecated.

This commit is contained in:
Dorian 2016-10-02 15:46:46 -04:00
parent 5ae8c1161c
commit d83fb1362a
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
- name: install globally required tools
npm: name={{ item }} state=present registry=http://registry.npmjs.org/
path="{{ local_dev_setup.npm_home }}" global=yes
with_items: globally_installed_tools
with_items: "{{ globally_installed_tools }}"
- name: add binaries to local path
lineinfile: state=present dest="{{ local_dev_setup.user_home }}/.bash_profile"

View File

@ -33,4 +33,4 @@
- name: install globally required tools
npm: name={{ item }} global=yes state=present registry=http://registry.npmjs.org/
when: local_development.enabled == false
with_items: globally_installed_tools
with_items: "{{ globally_installed_tools }}"