From: Sawyer X Date: Thu, 23 Feb 2012 12:35:59 +0000 (+0200) Subject: put equal sign for module parameters in trace() method X-Git-Tag: v0.9.7~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=276a30c97c5932b6bdc4b0246102caec559d9ab8;p=p5sagit%2FApp-FatPacker.git put equal sign for module parameters in trace() method --- diff --git a/lib/App/FatPacker.pm b/lib/App/FatPacker.pm index e7cdd91..a6a01e3 100644 --- a/lib/App/FatPacker.pm +++ b/lib/App/FatPacker.pm @@ -83,9 +83,9 @@ sub script_command_trace { } my $arg = do { if ($to_stderr) { - "=>&STDERR" + "=&STDERR" } elsif ($file) { - "=>>${file}" + ">>${file}" } }; @@ -107,7 +107,7 @@ sub trace { } { - local $ENV{PERL5OPT} = '-MApp::FatPacker::Trace'.$output; + local $ENV{PERL5OPT} = '-MApp::FatPacker::Trace='.$output; system $^X, @$args; } }