5 lines
238 B
YAML
5 lines
238 B
YAML
---
|
|
- name: Remove existing app if present
|
|
file: path=/Applications/{{ app_name }}.app state=absent
|
|
- name: Copy {{ app_name_pretty }} app to Applications directory
|
|
command: cp -R {{ app_name }}.app /Applications chdir={{ downloads }} |