]> git.donarmstrong.com Git - zsh.git/blob - .zsh/zshrc/00_recompile
fix git source repository url
[zsh.git] / .zsh / zshrc / 00_recompile
1 # zshrc/00_zrecompile
2 #
3 # recompile zsh snippets, if necessary
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: git://git.madduck.net/etc/zsh.git
9 #
10
11 zrecompile $ZDOTDIR/**/*(/N) $ZVARDIR/**/*(/N) | while read pre file post; do
12     case "$post" in
13       succeeded*) rm -f "${file%:}".old;;
14       *) :;;
15     esac
16     info "$pre ${file##$HOME/} $post"
17   done
18
19 # vim:ft=zsh