Skip to content

Commit

Permalink
roles/brew: fix command
Browse files Browse the repository at this point in the history
  • Loading branch information
naisanzaa committed May 27, 2024
1 parent 4db623e commit 10ec793
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion playbooks/roles/brew/tasks/MacOSX.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
changed_when: false

- name: 'NONINTERACTIVE=1 {{ ARCH }} /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"'
shell: 'NONINTERACTIVE=1 {{ ARCH }} /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"'
shell: |
NONINTERACTIVE=1 {{ ARCH }} /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
register: shell
changed_when: "shell.rc != 0"
become: yes
Expand Down

0 comments on commit 10ec793

Please sign in to comment.