Files
ansible_role_package/tasks/go.yml
2025-03-31 18:15:07 -06:00

10 lines
241 B
YAML

# vim: set filetype=yaml.ansible :
---
- name: Install go package {{ pkg }}
become: "{{ ext_become }}"
environment:
GOBIN: "{{ path.bin }}"
PATH: "{{ path.go }}/bin:$PATH"
ansible.builtin.command:
cmd: go install {{ pkg }}