summaryrefslogtreecommitdiff
path: root/dgit
diff options
context:
space:
mode:
Diffstat (limited to 'dgit')
-rwxr-xr-xdgit3
1 files changed, 3 insertions, 0 deletions
diff --git a/dgit b/dgit
index 696978b..5bd648a 100755
--- a/dgit
+++ b/dgit
@@ -1209,6 +1209,7 @@ sub archive_api_query_curl ($) {
my $response_body;
$setopt->(CURLOPT_REDIR_PROTOCOLS, CURLPROTO_HTTPS|CURLPROTO_HTTP);
$setopt->(CURLOPT_URL, $url);
+ $setopt->(CURLOPT_NOSIGNAL, 1);
$setopt->(CURLOPT_WRITEDATA, \$response_body);
if ($url =~ m#^https://([-.0-9a-z]+)/#) {
@@ -1221,6 +1222,8 @@ sub archive_api_query_curl ($) {
printdebug "archive api query: fetching $url...\n";
+ local $SIG{PIPE} = 'IGNORE';
+
my $x = $curl->perform();
fail f_ "fetch of %s failed (%s): %s",
$url, $curl->strerror($x), $curl->errbuf