working on alacritty source install
- adding cargo build helper
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
- name: Clone git repository {{ src_pkg }}
|
||||
# vim: set filetype=yaml.ansible :
|
||||
---
|
||||
- name: Clone git repository
|
||||
ansible.builtin.git:
|
||||
depth: 1
|
||||
force: true
|
||||
dest: "{{ src_path }}"
|
||||
repo: "{{ src_gitrepo }}"
|
||||
version: "{{ src_version | default(omit) }}"
|
||||
depth: "{{ git_depth | default(1) }}"
|
||||
dest: "{{ git_path }}"
|
||||
force: "{{ git_force | default(true) }}"
|
||||
recursive: "{{ git_recursive | default(true) }}"
|
||||
repo: "{{ git_repo }}"
|
||||
version: "{{ git_version | default(omit) }}"
|
||||
|
||||
Reference in New Issue
Block a user