projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
7dbebb1
)
Only set @ARGV if it's empty
Shawn M Moore [Mon, 22 Dec 2008 03:26:16 +0000 (
03:26
+0000)]
author/munge-tests-for-moose.pl
patch
|
blob
|
blame
|
history
diff --git
a/author/munge-tests-for-moose.pl
b/author/munge-tests-for-moose.pl
index
a851ba7
..
96ec4da
100755
(executable)
--- a/
author/munge-tests-for-moose.pl
+++ b/
author/munge-tests-for-moose.pl
@@
-3,7
+3,7
@@
use strict;
use warnings;
BEGIN {
- @ARGV = glob('t/*.t t/*/*.t');
+ @ARGV = glob('t/*.t t/*/*.t') if !@ARGV;
$^I = '';
}