Skip to content

Commit

Permalink
Fix SS osdeps file checking
Browse files Browse the repository at this point in the history
Fix SS osdeps file checking so it does not break when it is a symlink
  • Loading branch information
hakamine committed Apr 7, 2017
1 parent d4758a5 commit a38b2d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/ss-osdeps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

- name: "set_fact osdeps"
set_fact:
osdeps: "{{ od.stat.isreg is defined and od.stat.isreg }}"
osdeps: "{{ od.stat.exists is defined and od.stat.exists }}"

- name: "fetch dependencies files from source code repository to local machine"
fetch:
Expand Down

0 comments on commit a38b2d1

Please sign in to comment.