From 26022ea7b6fcd516f18ebab31fe8b73c19625fdd Mon Sep 17 00:00:00 2001 From: bretello Date: Wed, 17 Apr 2024 16:01:39 +0200 Subject: [PATCH] zsh: fix antidote migration cache dir --- brethil_dotfile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brethil_dotfile.sh b/brethil_dotfile.sh index a07f5a6..72127f3 100755 --- a/brethil_dotfile.sh +++ b/brethil_dotfile.sh @@ -19,7 +19,7 @@ if [[ ! -d $DOTFILES/antidote ]]; then fi export ZSH_CACHE_DIR="${XDG_CACHE_HOME:-$HOME/.cache}/oh-my-zsh" -[[ -d $ZSH_CACHE_DIR ]] || mkdir -p $ZSH_CACHE_DIR +[[ -d $ZSH_CACHE_DIR ]] || mkdir -p $ZSH_CACHE_DIR/completions # Lazy-load antidote from its functions directory. fpath=($DOTFILES/antidote/functions/ $fpath)