[Moose-commits] r7155 - in Mouse/trunk: . author
sartak at code2.0beta.co.uk
sartak at code2.0beta.co.uk
Mon Dec 22 03:26:16 GMT 2008
Author: sartak
Date: 2008-12-21 19:26:16 -0800 (Sun, 21 Dec 2008)
New Revision: 7155
Modified:
Mouse/trunk/
Mouse/trunk/author/munge-tests-for-moose.pl
Log:
r77757 at onn: sartak | 2008-12-21 22:26:07 -0500
Only set @ARGV if it's empty
Property changes on: Mouse/trunk
___________________________________________________________________
Name: svk:merge
- 08e7d58d-de06-4458-8c15-335e402ab116:/local/Mouse:77755
08e7d58d-de06-4458-8c15-335e402ab116:/local/Mouse-trunk:61565
3efe9002-19ed-0310-8735-a98156148065:/Mouse/branches/shika-based:6997
+ 08e7d58d-de06-4458-8c15-335e402ab116:/local/Mouse:77757
08e7d58d-de06-4458-8c15-335e402ab116:/local/Mouse-trunk:61565
3efe9002-19ed-0310-8735-a98156148065:/Mouse/branches/shika-based:6997
Modified: Mouse/trunk/author/munge-tests-for-moose.pl
===================================================================
--- Mouse/trunk/author/munge-tests-for-moose.pl 2008-12-22 03:19:34 UTC (rev 7154)
+++ Mouse/trunk/author/munge-tests-for-moose.pl 2008-12-22 03:26:16 UTC (rev 7155)
@@ -3,7 +3,7 @@
use warnings;
BEGIN {
- @ARGV = glob('t/*.t t/*/*.t');
+ @ARGV = glob('t/*.t t/*/*.t') if !@ARGV;
$^I = '';
}
More information about the Moose-commits
mailing list