From: Karen Etheridge Date: Tue, 16 Apr 2013 19:08:21 +0000 (-0700) Subject: minor wording improvement X-Git-Tag: v0.009017~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1f8ac8bda7fdeba9e9a8a4559de66635046c38ed;p=p5sagit%2FApp-FatPacker.git minor wording improvement --- diff --git a/lib/App/FatPacker.pm b/lib/App/FatPacker.pm index 6933d93..207141f 100644 --- a/lib/App/FatPacker.pm +++ b/lib/App/FatPacker.pm @@ -205,7 +205,7 @@ sub fatpack_file { foreach my $dir (@dirs) { find(sub { return unless -f $_; - !/\.pm$/ and warn "File ${File::Find::name} isn't a .pm file - can't pack this and if you hoped we were going to things may not be what you expected later\n" and return; + !/\.pm$/ and warn "File ${File::Find::name} isn't a .pm file - can't pack this -- if you hoped we were going to, things may not be what you expected later\n" and return; $files{File::Spec::Unix->abs2rel($File::Find::name,$dir)} = do { local (@ARGV, $/) = ($File::Find::name); <> };