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 }}"
|
|
|
|
|
when: go_apps is defined
|
|
|
|
|
|
|
|
|
|
- name: Build Bat Cache
|
2025-04-07 05:39:18 -05:00
|
|
|
become_user: "{{ USER }}"
|
2025-04-06 20:13:27 -05:00
|
|
|
shell: "bat cache --build"
|