summaryrefslogtreecommitdiffstats
path: root/roles/dotfiles
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-01-24 16:24:28 +0100
committerAhmed Abdelhalim <[email protected]>2026-01-24 16:24:28 +0100
commit6d927c0f20f95dfb1ece8766dfaf34805bc2f820 (patch)
tree7fcc3918e290e31309d74eb0b784fa6a00318ee3 /roles/dotfiles
parentb39722e58c1935f4d92c052cf89c941164150c35 (diff)
Fix ansible_facts to use only bracket notation instead of dot notation
Co-authored-by: claude.ai
Diffstat (limited to 'roles/dotfiles')
-rw-r--r--roles/dotfiles/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
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