|
@@ -82,8 +82,14 @@ sub download_cmd($) {
|
|
|
}
|
|
|
|
|
|
return $have_curl
|
|
|
- ? (qw(curl -f --connect-timeout 20 --retry 5 --location), $check_certificate ? '' : '--insecure', shellwords($ENV{CURL_OPTIONS} || ''), $url)
|
|
|
- : (qw(wget --tries=5 --timeout=20 --output-document=-), $check_certificate ? '' : '--no-check-certificate', shellwords($ENV{WGET_OPTIONS} || ''), $url)
|
|
|
+ ? (qw(curl -f --connect-timeout 20 --retry 5 --location),
|
|
|
+ $check_certificate ? () : '--insecure',
|
|
|
+ shellwords($ENV{CURL_OPTIONS} || ''),
|
|
|
+ $url)
|
|
|
+ : (qw(wget --tries=5 --timeout=20 --output-document=-),
|
|
|
+ $check_certificate ? () : '--no-check-certificate',
|
|
|
+ shellwords($ENV{WGET_OPTIONS} || ''),
|
|
|
+ $url)
|
|
|
;
|
|
|
}
|
|
|
|