From b807300e2ac159229c97f09644f9a7859af92999 Mon Sep 17 00:00:00 2001 From: vincent Date: Sun, 15 Jan 2023 12:53:48 +0100 Subject: [PATCH] fix: correct dest path --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 01d8331..ee2ea22 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -2,7 +2,7 @@ # tasks file for user_config - name: Clone user repository ansible.builtin.git: - dest: "{{ user_config_home }}" + dest: "{{ user_config_home }}/conf2" repo: "{{ user_config_repo }}" clone: true recursive: true