fix mkdir zsh cache

fixup 8a8d061
feature/symbol-search
bretello 2020-12-08 22:17:28 +01:00
parent 64ade8d864
commit 4b3b12db5b
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ export VIRTUAL_ENV_DISABLE_PROMPT=true
_ZSH_CACHE="${HOME}/.cache/zsh"
if [[ ! -d "${HOME}/.cache/zsh" ]]; then mkdir "${HOME}/.cache/zsh"; fi
if [[ ! -d "${_ZSH_CACHE}" ]]; then mkdir -p "${_ZSH_CACHE}"; fi
# Source all zsh plugins
source <(antibody init)