dotfiles/ansible/scripts/install_goapps.yml

9 lines
229 B
YAML
Raw Permalink Normal View History

2025-04-06 20:13:27 -05:00
- name: Installing Go apps
2025-04-07 05:39:18 -05:00
become_user: "{{ USER }}"
2025-04-06 20:13:27 -05:00
shell: "go install {{ item }}"
with_items: "{{ go_apps }}"
2025-09-27 08:33:38 -05:00
when: go_apps is defined
#- name: Build Bat Cache
# become_user: "{{ USER }}"
# shell: "bat cache --build"