1
0
mirror of https://github.com/git/git.git synced 2024-09-21 09:42:22 +02:00

git-cvsimport.perl: Print "UNKNOWN LINE..." on stderr, not stdout.

Signed-off-by: Jim Meyering <meyering@redhat.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jim Meyering 2008-08-05 16:54:42 +02:00 committed by Junio C Hamano
parent f70f988b11
commit 3be3999849

View File

@ -952,7 +952,7 @@ while (<CVS>) {
} elsif (/^-+$/) { # end of unknown-line processing
$state = 1;
} elsif ($state != 11) { # ignore stuff when skipping
print "* UNKNOWN LINE * $_\n";
print STDERR "* UNKNOWN LINE * $_\n";
}
}
commit() if $branch and $state != 11;