dotfiles/ansible/scripts/install_goapps.yml

10 lines
214 B
YAML
Raw Normal View History

2025-04-06 20:13:27 -05:00
- name: Installing Go apps
become_user: user
shell: "go install {{ item }}"
with_items: "{{ go_apps }}"
when: go_apps is defined
- name: Build Bat Cache
become_user: user
shell: "bat cache --build"