wikiheaders.pl: README files are no longer in Windows endline format.

This commit is contained in:
Ryan C. Gordon
2023-11-30 10:10:04 -05:00
parent 1072b6e86e
commit df0fd55891

View File

@@ -1090,7 +1090,7 @@ if ($copy_direction == 1) { # --copy-to-headers
my $dent = $_;
if ($dent =~ /\A(.*?)\.md\Z/) { # we only bridge Markdown files here.
next if $1 eq 'FrontPage';
filecopy("$wikireadmepath/$dent", "$readmepath/README-$dent", "\r\n");
filecopy("$wikireadmepath/$dent", "$readmepath/README-$dent", "\n");
}
}
closedir(DH);