]> git.donarmstrong.com Git - zsh.git/blob - .zsh/zprofile/40_zcompile
delete .zwc.old files
[zsh.git] / .zsh / zprofile / 40_zcompile
1 # zlogin/40_zcompile
2 #
3 # compile zsh snippets
4 #
5 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
6 # Released under the terms of the Artistic Licence 2.0
7 #
8 # Source repository: http://git.madduck.net/v/etc/zsh.git
9 #
10
11 if [ -n "$ZDOTDIR" ] && [ -d "$ZDOTDIR" ]; then
12   rm -f $ZDOTDIR/**/*.zwc{,.old}(D.N)
13   for f ($ZDOTDIR/*(D.,@) $ZDOTDIR/**/*(.)) \
14     [[ $f:t != .gitignore ]] && zcompile $f
15 fi
16
17 if [ -n "$ZVARDIR" ] && [ -d "$ZVARDIR" ]; then
18   rm -f $ZVARDIR/**/*.zwc{,.old}(.N)
19   for f ($ZVARDIR/comp*(.N)) zcompile $f
20 fi
21
22 # vim:ft=zsh