---
- name: "Ensure {{ app_name }}'s Homebrew Tap is installed"
  become: false
  community.general.homebrew_tap:
    name: "{{ s5cmd_tap_repo }}"
    state: "{{ app_state | default('present') }}"
    url: "{{ s5cmd_repo_url }}"

- name: "Ensure {{ app_name }} is installed"
  become: false
  community.general.homebrew:
    name: s5cmd
    state: "{{ app_state | default('present') }}"
