From: Shawn M Moore Date: Thu, 5 Feb 2009 16:53:28 +0000 (+0000) Subject: Don't need to filter out MouseX any more X-Git-Tag: 0.19~43 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=26cf84ad4e073bf14437108b224e3710a797579a Don't need to filter out MouseX any more --- diff --git a/author/generate-mouse-tiny.pl b/author/generate-mouse-tiny.pl index f594601..265cd16 100755 --- a/author/generate-mouse-tiny.pl +++ b/author/generate-mouse-tiny.pl @@ -13,8 +13,9 @@ find({ wanted => sub { push @files, $_ if -f $_ - && !/Squirrel|MouseX|\.sw[po]$/ + && !/Squirrel/ && !/\bouse/ + && !/\.sw[po]$/ }, no_chdir => 1, }, 'lib');