12 lines
261 B
YAML
12 lines
261 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.path }}"
|
||
|
state: absent
|
||
|
loop:
|
||
|
- "{{ local_path }}/.fzf"
|