Skip to content

Commit

Permalink
Merge pull request adoptium#37 from AdamBrousseau/cmake_cleanup_typo
Browse files Browse the repository at this point in the history
Fix missing underscore in with_items
  • Loading branch information
bblondin authored Nov 21, 2017
2 parents 0cd5adf + 163e9d7 commit 84176d7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ansible/playbooks/centos_7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
file:
path: "{{ item }}"
state: absent
with items:
with_items:
- /tmp/cmake-3.7.2.tar.gz
- /tmp/cmake-3.7.2
tags: cmake
Expand Down
2 changes: 1 addition & 1 deletion ansible/playbooks/rhel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
file:
path: "{{ item }}"
state: absent
with items:
with_items:
- /tmp/cmake-3.7.2.tar.gz
- /tmp/cmake-3.7.2
tags: cmake
Expand Down
9 changes: 9 additions & 0 deletions ansible/playbooks/sles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,15 @@
- ansible_architecture == "s390x"
tags: cmake

- name: Cleanup cmake
file:
path: "{{ item }}"
state: absent
with_items:
- /tmp/cmake-3.7.2.tar.gz
- /tmp/cmake-3.7.2
tags: cmake

##########
# Docker #
##########
Expand Down

0 comments on commit 84176d7

Please sign in to comment.