fix neovide desktop location

This commit is contained in:
Matthew Stobbs
2025-01-26 08:58:33 -07:00
parent e1c330be7b
commit 7b7b33271f
4 changed files with 31 additions and 3 deletions

View File

@@ -82,7 +82,18 @@
loop_var: srcpkg
when: srcpkgs|length > 0
- name: Install cargo packages
- name: install cargo packages at specific version
community.general.cargo:
name: "{{ cargopkg.name }}"
version: "{{ cargopkg.version }}"
path: "{{ cargopkg.path | default(default_config.install_prefix) }}"
locked: "{{ cargopkg.locked | default(false) }}"
when: cargoversioned|length > 0
loop: "{{ cargoversioned }}"
loop_control:
loop_var: cargopkg
- name: Install cargo packages at latest version
community.general.cargo:
name: "{{ cargopkgs }}"
state: latest