diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-12-18 20:54:53 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-12-18 20:54:53 +0000 |
commit | 65fad8645d72f2293a7d62d6ca338ebc2ee0d9de (patch) | |
tree | 69a92efdd8ca2ff6d0a54bebb0e76e8bd7fbb27e /scripts | |
parent | 5884b43b51e60c4329d995d1513ad6d8cdf2a030 (diff) | |
download | upstream-65fad8645d72f2293a7d62d6ca338ebc2ee0d9de.tar.gz upstream-65fad8645d72f2293a7d62d6ca338ebc2ee0d9de.tar.bz2 upstream-65fad8645d72f2293a7d62d6ca338ebc2ee0d9de.zip |
download.pl: pass --no-check-certificate to wget
SVN-Revision: 24686
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/download.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/download.pl b/scripts/download.pl index fe27df5e8f..633a4f6f7d 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -77,7 +77,7 @@ sub download system("cp -vf $cache/$filename $target/$filename.dl") == 0 or return; system("$md5cmd $target/$filename.dl > \"$target/$filename.md5sum\" ") == 0 or return; } else { - open WGET, "wget -t5 --timeout=20 $options -O- \"$mirror/$filename\" |" or die "Cannot launch wget.\n"; + open WGET, "wget -t5 --timeout=20 --no-check-certificate $options -O- \"$mirror/$filename\" |" or die "Cannot launch wget.\n"; open MD5SUM, "| $md5cmd > \"$target/$filename.md5sum\"" or die "Cannot launch md5sum.\n"; open OUTPUT, "> $target/$filename.dl" or die "Cannot create file $target/$filename.dl: $!\n"; my $buffer; |