From: Shawn M Moore Date: Mon, 22 Dec 2008 03:26:16 +0000 (+0000) Subject: Only set @ARGV if it's empty X-Git-Tag: 0.19~88 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=ef42c7fc19d39d3595a6c78c777dd152bcfb4de8 Only set @ARGV if it's empty --- diff --git a/author/munge-tests-for-moose.pl b/author/munge-tests-for-moose.pl index a851ba7..96ec4da 100755 --- 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 = ''; }