From 5c8bce6b5e775a0e657855ae47ac9db928d52563 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Sat, 3 Jul 2021 16:57:14 +0200 Subject: [PATCH] Fix: path to dest in "create and copy zsh directory --- tasks/dotfiles.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/dotfiles.yml b/tasks/dotfiles.yml index f780ee7..90b8825 100644 --- a/tasks/dotfiles.yml +++ b/tasks/dotfiles.yml @@ -21,7 +21,7 @@ - name: dotiles -- create and copy .config/zsh directory copy: src: files/dotfiles/zshrc - path: /home/{{ item.username }}/.config/zsh/ + dest: /home/{{ item.username }}/.config/zsh/ owner: "{{ item.username }}" mode: '0755' with_items: "{{ dotusers }}"