dotfiles/ansible/scripts/install_goapps.yml

6 lines
140 B
YAML
Raw Normal View History

2024-06-22 08:44:12 -05:00
- name: Installing Go apps
become_user: user
shell: "go install {{ item }}"
with_items: "{{ go_apps }}"
when: go_apps is defined