trying to fix alacritty build
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
ansible.builtin.debug:
|
||||
var: pkg
|
||||
|
||||
- name: Install with cargo
|
||||
- name: Install with cargo {{ pkg.name }}
|
||||
become: "{{ install_become }}"
|
||||
become_user: "{{ install_become_user }}"
|
||||
community.general.cargo:
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
## locked: _bool_ optional, default 'false'
|
||||
## build_flags: _list[str]_ optional. If set, will append these to the build command
|
||||
---
|
||||
- name: Cargo source install helper
|
||||
- name: Cargo source install helper {{ pkg.name | default(omit) }}
|
||||
block:
|
||||
- name: Fetch git repo
|
||||
vars:
|
||||
@@ -32,7 +32,7 @@
|
||||
path: "{{ install_prefix }}"
|
||||
name: "{{ pkg.name }}"
|
||||
version: "{{ pkg.version }}"
|
||||
locked: "{{ pkg.locked }}"
|
||||
locked: "{{ pkg.locked | default(false) }}"
|
||||
|
||||
- name: Clean existing install
|
||||
vars:
|
||||
|
||||
Reference in New Issue
Block a user