diff options
author | Robby Russell <robby@planetargon.com> | 2015-01-31 06:23:50 -0600 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-01-31 06:23:50 -0600 |
commit | 550ccca91cb45fcf26a8f2c3c60da675b995e3f3 (patch) | |
tree | bae0321bcee402b24fb9320a02e1991b1be26553 /plugins/zsh_reload | |
parent | 1ac2f8645e9cec48cbcb036f02479d3666ae13c8 (diff) | |
parent | ceb42ecdb6296b136e3ead9e6ab53c24a01fedc9 (diff) | |
download | zsh-550ccca91cb45fcf26a8f2c3c60da675b995e3f3.tar.gz zsh-550ccca91cb45fcf26a8f2c3c60da675b995e3f3.tar.bz2 zsh-550ccca91cb45fcf26a8f2c3c60da675b995e3f3.zip |
Merge pull request #3478 from stephenrjohnson/custom_cache_dir
Allow custom cache dir
Diffstat (limited to 'plugins/zsh_reload')
-rw-r--r-- | plugins/zsh_reload/zsh_reload.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/zsh_reload/zsh_reload.plugin.zsh b/plugins/zsh_reload/zsh_reload.plugin.zsh index 3f44b99c6..cde9ebeca 100644 --- a/plugins/zsh_reload/zsh_reload.plugin.zsh +++ b/plugins/zsh_reload/zsh_reload.plugin.zsh @@ -1,7 +1,7 @@ # reload zshrc function src() { - local cache="$ZSH/cache" + local cache=$ZSH_CACHE_DIR autoload -U compinit zrecompile compinit -d "$cache/zcomp-$HOST" |