From: Eric Wong Date: Fri, 12 Jan 2007 11:07:31 +0000 (-0800) Subject: git-svn: do not let Git.pm warn if we prematurely close pipes X-Git-Tag: v1.5.1-rc1~245 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c843c464b83237fba65dc46a10133fda9f475cc5;p=git.git 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 --- diff --git a/git-svn.perl b/git-svn.perl index 3e4f5b73c..dd639a1b9 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -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; }