diff options
author | Alan Pearce | 2013-09-15 17:19:19 +0100 |
---|---|---|
committer | Alan Pearce | 2013-09-15 17:19:19 +0100 |
commit | cd730eb37c5dba5897682b4d588ed428759bfe28 (patch) | |
tree | b5272d4723c54fcbc193e5294e07d7a4ccde330e /install | |
parent | e42f1774217ea88916344261c56b737ed2a1fade (diff) | |
parent | 270a82dbed30eb256736b11c0af54aa7d175f56a (diff) | |
download | dotfiles-cd730eb37c5dba5897682b4d588ed428759bfe28.tar.lz dotfiles-cd730eb37c5dba5897682b4d588ed428759bfe28.tar.zst dotfiles-cd730eb37c5dba5897682b4d588ed428759bfe28.zip |
Merge remote-tracking branch 'refs/remotes/origin/master'
Diffstat (limited to 'install')
-rwxr-xr-x | install | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/install b/install index 40c134f..16d30c5 100755 --- a/install +++ b/install @@ -47,6 +47,11 @@ then emacs --batch --eval '(batch-byte-recompile-directory 0)' ~/.emacs.d/ fi +if [[ ! -d ~/.zsh/cache ]] +then + mkdir -p ~/.zsh/cache +fi + fasd_cache=~/.zsh/cache/fasd-init-zsh if [[ ! -s "$fasd_cache" || dotfiles/zsh/functions/fasd -nt "$fasd_cache" ]]; then dotfiles/zsh/functions/fasd/fasd --init posix-alias zsh-hook zsh-ccomp zsh-ccomp-install zsh-wcomp zsh-wcomp-install >! "$fasd_cache" |