From 96ca7d370f2b3061b33451db91fe7a5508d24669 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Fri, 15 Nov 2019 22:13:57 +0000 Subject: [PATCH] Create a directory for bash completion helpers --- roles/bash/tasks/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/roles/bash/tasks/main.yml b/roles/bash/tasks/main.yml index edca53c..b8b3fa4 100644 --- a/roles/bash/tasks/main.yml +++ b/roles/bash/tasks/main.yml @@ -9,11 +9,12 @@ - name: Create the bash cache and config directories file: - path: "~/.{{ item }}/bash" + path: "{{ item }}" state: directory loop: - - cache - - config + - "~/.cache/bash" + - "~/.config/bash" + - "~/.config/bash/completion.d" - name: Deploy bash profile file: