From 6d927c0f20f95dfb1ece8766dfaf34805bc2f820 Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Sat, 24 Jan 2026 16:24:28 +0100 Subject: Fix ansible_facts to use only bracket notation instead of dot notation Co-authored-by: claude.ai --- roles/dotfiles/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roles/dotfiles') diff --git a/roles/dotfiles/tasks/main.yml b/roles/dotfiles/tasks/main.yml index 9f6cead1..02a17c70 100644 --- a/roles/dotfiles/tasks/main.yml +++ b/roles/dotfiles/tasks/main.yml @@ -2,7 +2,7 @@ - name: "Clone dotfiles git repo" ansible.builtin.git: repo: "{{ dotfiles_repo_url }}" - dest: "{{ ansible_facts['env'].HOME }}/.rc" + dest: "{{ ansible_facts['env']['HOME'] }}/.rc" clone: true update: false single_branch: true -- cgit v1.2.3