16 lines
383 B
YAML
16 lines
383 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Append to pkg_flatpak
|
|
when:
|
|
- ansible_system == 'Linux'
|
|
notify:
|
|
- Depend flatpak
|
|
ansible.builtin.set_fact:
|
|
pkg_flatpak: "{{ pkg_flatpak + ['com.heroicgameslauncher.hgl'] }}"
|
|
|
|
- name: Append to pkg_cask
|
|
when:
|
|
- ansible_os_family == 'Darwin'
|
|
ansible.builtin.set_fact:
|
|
pkg_cask: "{{ pkg_cask + ['heroic'] }}"
|