Revision history for App-FatPacker
+ - fix fatal "List form of piped open not implemented" on MSWin32 (RT#85712,
+ ether)
+
0.009016 - 2013-04-07
- 'file' command now takes care of keeping its original shebang line when given
the original file as its argument. The 'pack' command makes use of that too.
return;
} else {
# no output target specified, slurp
- open my $out_fh, '-|', $^X, @args;
+ open my $out_fh, "$^X @args |";
return do { local $/; <$out_fh> };
}
}