sync/roles/clean/tasks/main.yml

13 lines
252 B
YAML

- name: Remove files
file:
path: "{{ local_path }}/{{ item.path }}"
state: absent
with_filetree: "skel/"
- name: Remove cloned repositories
file:
path: "{{ local_path }}/{{ item }}"
state: absent
loop:
- ".fzf"
- ".vim"