[Jifty-commit] r1236 - jifty/trunk/t

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Fri Jun 9 17:38:58 EDT 2006


Author: clkao
Date: Fri Jun  9 17:38:56 2006
New Revision: 1236

Modified:
   jifty/trunk/t/01-dependencies.t

Log:
No need to scan deps for dead files.


Modified: jifty/trunk/t/01-dependencies.t
==============================================================================
--- jifty/trunk/t/01-dependencies.t	(original)
+++ jifty/trunk/t/01-dependencies.t	Fri Jun  9 17:38:56 2006
@@ -20,6 +20,7 @@
 sub wanted {
     return unless -f $_;
     return if $File::Find::dir =~ m!/.svn($|/)!;
+    return if $File::Find::name =~ /~$/;
     return if $File::Find::name =~ /\.pod$/;
     local $/;
     open(FILE, $_) or return;


More information about the Jifty-commit mailing list