14 lines
251 B
YAML
14 lines
251 B
YAML
---
|
|
- name: build and install alacritty
|
|
become: true
|
|
ansible.builtin.command:
|
|
cmd:
|
|
- cargo
|
|
- install
|
|
- --root
|
|
- /usr/local
|
|
- --git
|
|
- https://github.com/alacritty/alacritty.git
|
|
- --tag
|
|
- v0.13.2
|