git-svn: do not let Git.pm warn if we prematurely close pipes

This mainly quiets down warnings when running git svn log.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
This commit is contained in:
Eric Wong 2007-01-12 03:07:31 -08:00
Родитель e7f023c81a
Коммит c843c464b8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3495,7 +3495,7 @@ sub cmd_show_log {
process_commit($_, $r_min, $r_max) foreach reverse @k;
}
out:
eval { command_close_pipe($log) };
close $log;
print '-' x72,"\n" unless $incremental || $oneline;
}