Fixed pipx packages installation

This commit is contained in:
Ivan Golikov 2025-01-10 01:42:52 +01:00
parent da54c4a834
commit 3d0997e129

View file

@ -59,7 +59,8 @@
when: is_arch
- name: Install pipx packages
ansible.builtin.command: pipx install {{ pipx_packages|join(' ') }}
ansible.builtin.command: "pipx install {{ item }}"
loop: "{{ pipx_packages }}"
- name: Set fish as default shell
become: true