From 5f62cbe18f929fee25d8d9499dfdb449bd760f20 Mon Sep 17 00:00:00 2001 From: adam Date: Wed, 8 Feb 2006 13:01:39 +0000 Subject: [PATCH] ignore *~ --- .zsh/functions/run_hooks | 1 + 1 file changed, 1 insertion(+) diff --git a/.zsh/functions/run_hooks b/.zsh/functions/run_hooks index 583e9e0..5974e0c 100755 --- a/.zsh/functions/run_hooks +++ b/.zsh/functions/run_hooks @@ -156,6 +156,7 @@ iterate_hooks () { # Detect obsolete files from run_local_hooks for hook_path in ${hook_d%%.d}.*; do case "$hook_path" in + *~) continue ;; *.d) continue ;; *.zwc) continue ;; *.zwc.*) continue ;;