git-svn: ignore SIGPIPE
[gitweb.git] / git-svn.perl
index 570504cee760c678e52349a6967bba499bd629c0..aa14564e337adfd7646bc61692c4c4734d8dbfdd 100755 (executable)
 $| = 1; # unbuffer STDOUT
 
 sub fatal (@) { print STDERR "@_\n"; exit 1 }
+
+# All SVN commands do it.  Otherwise we may die on SIGPIPE when the remote
+# repository decides to close the connection which we expect to be kept alive.
+$SIG{PIPE} = 'IGNORE';
+
 sub _req_svn {
        require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
        require SVN::Ra;