From 7b205e5b2b9aeac3f9bae9ffe84a643932786f33 Mon Sep 17 00:00:00 2001 From: George Rawlinson Date: Thu, 5 Dec 2019 20:19:39 +1300 Subject: [PATCH] fix: incorrect cache path --- source/completions.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/completions.zsh b/source/completions.zsh index cd584ef..c0ad48c 100644 --- a/source/completions.zsh +++ b/source/completions.zsh @@ -20,6 +20,6 @@ zstyle ':completion:*' special-dirs true # use caching so that commands like apt and dpkg complete are useable zstyle ':completion::complete:*' use-cache 1 -zstyle ':completion::complete:*' cache-path "{$ZCACHEDIR}" +zstyle ':completion::complete:*' cache-path "${ZCACHEDIR}" # vim: ft=zsh expandtab tabstop=2 shiftwidth=2