Merge pull request #938 from virtuald/patch-1

git-cvsexportcommit.perl: Force crlf translation
This commit is contained in:
Johannes Schindelin
2018-06-08 18:34:54 +02:00
committed by Jameson Miller

View File

@@ -431,6 +431,7 @@ END
sub safe_pipe_capture {
my @output;
if (my $pid = open my $child, '-|') {
binmode($child, ":crlf");
@output = (<$child>);
close $child or die join(' ',@_).": $! $?";
} else {