Skip to content

Commit

Permalink
Merge pull request #103 from hedii/nomore-warnings
Browse files Browse the repository at this point in the history
Use the full variable syntax
  • Loading branch information
ricardclau committed Mar 24, 2016
2 parents 61c8823 + 2279802 commit 422cc25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/symlink-shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# Ensure symlinks target paths is absent
- name: ANSISTRANO | Ensure shared paths targets are absent
file: state=absent path={{ ansistrano_release_path.stdout }}/{{ item }}
with_items: ansistrano_shared_paths
with_items: "{{ ansistrano_shared_paths }}"

# Symlinks shared paths
- name: ANSISTRANO | Create softlinks for shared paths
file: state=link path={{ ansistrano_release_path.stdout }}/{{ item }} src="{{ item | regex_replace('[^\/]*', '..') }}/../shared/{{ item }}"
with_items: ansistrano_shared_paths
with_items: "{{ ansistrano_shared_paths }}"

0 comments on commit 422cc25

Please sign in to comment.