6 lines
185 B
YAML
6 lines
185 B
YAML
|
|
- name: Install tool with UV
|
||
|
|
register: uv_tool_install
|
||
|
|
ansible.builtin.command: |
|
||
|
|
uv tool install {{ item }}
|
||
|
|
changed_when: "'already installed' not in uv_tool_install.stdout"
|