2024-10-01 00:19:21 +02:00
|
|
|
---
|
|
|
|
# Installing antidote.
|
|
|
|
|
|
|
|
- name: Creating destination folder
|
|
|
|
ansible.builtin.file:
|
2024-10-01 09:17:39 +02:00
|
|
|
dest: "{{ lookup('ansible.builtin.env', 'HOME') }}/.zsh/antidote"
|
2024-10-01 00:19:21 +02:00
|
|
|
state: directory
|
2024-10-01 09:17:39 +02:00
|
|
|
mode: '0755'
|
2024-10-01 00:19:21 +02:00
|
|
|
|
|
|
|
- name: Installing antidote with git
|
2024-10-01 09:17:39 +02:00
|
|
|
# noqa: latest[git]
|
2024-10-01 00:19:21 +02:00
|
|
|
ansible.builtin.git:
|
|
|
|
repo: "https://github.com/mattmc3/antidote.git"
|
2024-10-01 09:17:39 +02:00
|
|
|
dest: "{{ lookup('ansible.builtin.env', 'HOME') }}/.zsh/antidote"
|
2024-10-01 00:19:21 +02:00
|
|
|
depth: 1
|