diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-10-14T17·17+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-10-14T17·17+0200 |
commit | fb4e2165982dd4e844d5009780c25c260d33375d (patch) | |
tree | 3f2b4f20d6c728c345c7da05aef2d551ba64f2ff | |
parent | d04e1ff12aef86e3653c6fb3e114c0bb58c5d255 (diff) | |
parent | bc4795919afac59af8f27d3c1f26ab404330f718 (diff) |
Merge pull request #372 from wmertens/patch-4
binary download: Use $NIX_CURL_FLAGS
-rw-r--r-- | scripts/download-from-binary-cache.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/download-from-binary-cache.pl.in b/scripts/download-from-binary-cache.pl.in index cdce8eb74a41..27c4895c2528 100644 --- a/scripts/download-from-binary-cache.pl.in +++ b/scripts/download-from-binary-cache.pl.in @@ -546,7 +546,7 @@ sub downloadBinary { die if $requireSignedBinaryCaches && !defined $info->{signedBy}; print STDERR "\n*** Downloading ‘$url’ ", ($requireSignedBinaryCaches ? "(signed by ‘$info->{signedBy}’) " : ""), "to ‘$storePath’...\n"; checkURL $url; - if (system("$Nix::Config::curl --fail --location --insecure --connect-timeout $curlConnectTimeout '$url' $decompressor | $Nix::Config::binDir/nix-store --restore $destPath") != 0) { + if (system("$Nix::Config::curl --fail --location --insecure --connect-timeout $curlConnectTimeout $NIX_CURL_FLAGS '$url' $decompressor | $Nix::Config::binDir/nix-store --restore $destPath") != 0) { warn "download of ‘$url’ failed" . ($! ? ": $!" : "") . "\n"; next; } |