trying to fix alacritty build

This commit is contained in:
Matthew Stobbs
2026-04-13 03:03:41 -06:00
parent d062a1f372
commit c97dfa1aa3
5 changed files with 14 additions and 10 deletions

View File

@@ -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:

View File

@@ -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: