From f4bb3b6731c939cdfdb652b1c82b4c8b0a05d4c1 Mon Sep 17 00:00:00 2001 From: Kaya-Sem Date: Mon, 30 Sep 2024 15:12:56 +0200 Subject: [PATCH] changed cache path to .cache --- completions/bash_completion.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/completions/bash_completion.sh b/completions/bash_completion.sh index 99d06a2..634d3e4 100644 --- a/completions/bash_completion.sh +++ b/completions/bash_completion.sh @@ -6,10 +6,10 @@ _commandtrein(){ # Use a cache that will update every week - file="$HOME/.config/commandtrein/$(date +'%m-%Y').txt" + file="$HOME/.cache/commandtrein/$(date +'%m-%Y').txt" if ! [ -f "$file" ]; then - mkdir -p "$HOME/.config/commandtrein/" + mkdir -p "$HOME/.cache/commandtrein/" # Assumes that the binary is called commandtrein commandtrein search > "$file" fi