Skip to content

Commit

Permalink
ansible: fix syntax on ignore_errors condition
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Feb 7, 2023
1 parent 46a768e commit 7d6ad4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansible/roles/package-upgrade/tasks/partials/brew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
become_user: "{{ ansible_user }}"
homebrew:
upgrade_all: yes
ignore_errors: os == "macos10.15" or os == "macos10.14"
ignore_errors: "{{ os == 'macos10.15' or os == 'macos10.14' }}"

- name: Install brew cu
become_user: "{{ ansible_user }}"
Expand Down

0 comments on commit 7d6ad4e

Please sign in to comment.