X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/5838b305850a8bd1e0d7d4701986fae648858a08..102dd5f86914a1045c03f3cdc958c51ab6035bc6:/.zsh/zshrc/00_recompile

diff --git a/.zsh/zshrc/00_recompile b/.zsh/zshrc/00_recompile
index 6f5b2e3..24e51b6 100644
--- a/.zsh/zshrc/00_recompile
+++ b/.zsh/zshrc/00_recompile
@@ -5,15 +5,15 @@
 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
 # Released under the terms of the Artistic Licence 2.0
 #
-# Source repository: http://git.madduck.net/v/etc/zsh.git
+# Source repository: git://git.madduck.net/etc/zsh.git
 #
 
-zrecompile $ZDOTDIR $ZVAR | while read pre file post; do
+zrecompile $ZDOTDIR/**/*(/N) $ZVARDIR/**/*(/N) | while read pre file post; do
     case "$post" in
-      succeeded) rm -f "${file%:}".old;;
+      succeeded*) rm -f "${file%:}".old;;
       *) :;;
     esac
-    echo "$pre ${file##$HOME/} $post" >&2
+    info "$pre ${file##$HOME/} $post"
   done
 
 # vim:ft=zsh