diff options
author | Jim Meyering <jim@meyering.net> | 2008-08-05 16:54:42 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-05 11:40:28 -0700 |
commit | 3be3999849bf993162fc957f47fc99325c324e9c (patch) | |
tree | 52710e10d91dc0e09dd0a2194d902ae36a4ceed4 /git-cvsimport.perl | |
parent | f70f988b11f3ec24df023b105967978410828ea1 (diff) | |
download | git-3be3999849bf993162fc957f47fc99325c324e9c.tar.gz git-3be3999849bf993162fc957f47fc99325c324e9c.tar.xz |
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>
Diffstat (limited to 'git-cvsimport.perl')
-rwxr-xr-x | git-cvsimport.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsimport.perl b/git-cvsimport.perl index cacbfc025..7e95fb374 100755 --- a/git-cvsimport.perl +++ b/git-cvsimport.perl @@ -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; |