---
- name: "Ensure {{ app_name }}'s dependencies are installed"
  become: false
  community.general.homebrew:
    name: "{{ shdoc_dependencies }}"
    state: present

- name: Run generic Linux tasks
  include_tasks: install-Linux.yml

- name: Ensure gawk is linked to /usr/bin
  lineinfile:
    path: /usr/local/bin/shdoc
    regexp: '^#!/usr/bin/gawk -f'
    line: '#!/usr/local/bin/gawk -f'
