fix broken flatpak

This commit is contained in:
Matthew Stobbs
2025-02-25 09:48:07 -07:00
parent a4398fa72e
commit 4ae443fe26
7 changed files with 40 additions and 16 deletions

View File

@@ -19,4 +19,4 @@
when:
- bitwarden.method == 'brew'
ansible.builtin.set_fact:
pkg_cask: "{{ pkg_cask + [bitwarden.pkg.name] }}"
pkg_cask: "{{ pkg_cask + [bitwarden] }}"

View File

@@ -7,10 +7,10 @@
- Depend flatpak
changed_when: true
ansible.builtin.set_fact:
pkg_flatpak: "{{ pkg_flatpak + ['io.httpie.Httpie'] }}"
pkg_flatpak: "{{ pkg_flatpak + [httpie.pkg] }}"
- name: Append to pkg_cask
when:
- ansible_os_family == 'Darwin'
ansible.builtin.set_fact:
pkg_cask: "{{ pkg_cask + ['httpie'] }}"
pkg_cask: "{{ pkg_cask + [httpie.pkg] }}"