Scripts: Remove DOS carriage returns

This commit is contained in:
Shahram Najm 2021-02-08 20:34:00 +00:00
parent 13127f1739
commit a14dad0046
1 changed files with 1 additions and 0 deletions

View File

@ -57,6 +57,7 @@ write_or_append(\*OUT_CFVARNAME, "$CFVARNAME_FILENAME");
my $first = 1;
while (<>) {
chomp;
s/\r//g; # Remove DOS carriage returns
if ($first == 1) {
check_first_row_column_names($_);
$first = 0;