Skip to content

Commit

Permalink
Merge pull request #938 from virtuald/patch-1
Browse files Browse the repository at this point in the history
git-cvsexportcommit.perl: Force crlf translation
  • Loading branch information
dscho authored Nov 4, 2016
2 parents 4614c34 + 4e77f6d commit ac221b3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions git-cvsexportcommit.perl
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit ac221b3

Please sign in to comment.