From abaa898a029505446c6f8cbf3a45d17f9e15a571 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 12 Apr 2014 18:18:00 +0100 Subject: zsh: use .cache/zsh instead of .zsh/cache --- hooks/post-up/zsh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'hooks/post-up/zsh') diff --git a/hooks/post-up/zsh b/hooks/post-up/zsh index f964e2b..78eb093 100755 --- a/hooks/post-up/zsh +++ b/hooks/post-up/zsh @@ -1,12 +1,12 @@ #!/usr/bin/env zsh ZDOTDIR="${XDG_CONFIG_HOME:~/.config}/zsh" -if [[ ! -d ~/.zsh/cache ]] +if [[ ! -d ~/.cache/zsh ]] then - mkdir -p ~/.zsh/cache + mkdir -p ~/.cache/zsh fi -fasd_cache=~/.zsh/cache/fasd-init-zsh +fasd_cache=~/.cache/zsh/fasd-init-zsh if [[ ! -s "$fasd_cache" || $ZDOTDIR/functions/fasd/fasd -nt "$fasd_cache" ]]; then $ZDOTDIR/functions/fasd/fasd --init posix-alias zsh-hook zsh-ccomp zsh-ccomp-install zsh-wcomp zsh-wcomp-install >! "$fasd_cache" fi @@ -27,7 +27,7 @@ if [[ $OSTYPE == freebsd* ]]; then fi zrecompile -p -R $ZDOTDIR/.zshrc.zwc $zfiles -- \ - -M .zsh/cache/compdump + -M .cache/zsh/compdump for fp in $ZDOTDIR/functions/*(/); do zrecompile -p $fp $fp/* -- cgit 1.4.1