16 lines
359 B
YAML
16 lines
359 B
YAML
---
|
|
- name: install homebrew package
|
|
when: ansible_os_family == 'Darwin'
|
|
homebrew:
|
|
state: latest
|
|
name: typst
|
|
|
|
- name: install scoop package
|
|
when: ansible_os_family == 'Windows'
|
|
community.windows.win_scoop:
|
|
state: present
|
|
name: typst
|
|
|
|
- when: ansible_os_family != 'Darwin' and ansible_os_family != 'Windows'
|
|
include_tasks: Linux.yaml
|