diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-09-20 20:55:03 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-09-20 20:55:03 +0200 |
| commit | 19a7d7053b721a22b805ba7a9daff1cb7a70a630 (patch) | |
| tree | e5f394ec8e01d66f3aa7e944d356a4bbb1509711 /roles/homebrew/tasks | |
| parent | 534e7486f3db1f56e9a4f54572c8724c2aca88f4 (diff) | |
Migrate to the new loop syntax
Diffstat (limited to 'roles/homebrew/tasks')
| -rw-r--r-- | roles/homebrew/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/homebrew/tasks/main.yml b/roles/homebrew/tasks/main.yml index ce5932a5..4da2c37a 100644 --- a/roles/homebrew/tasks/main.yml +++ b/roles/homebrew/tasks/main.yml @@ -15,7 +15,7 @@ ansible.builtin.package: name: "{{ item }}" state: "present" - with_items: "{{ homebrew_dependencies }}" + loop: "{{ homebrew_dependencies }}" - name: "Create linuxbrew directory" become: true |
