Browse Source

Increased to five download attempts in download.pl

SVN-Revision: 10486
Andy Boyett 18 years ago
parent
commit
197fafaff6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/download.pl

+ 1 - 1
scripts/download.pl

@@ -63,7 +63,7 @@ sub download
 	$options or $options = "";
 	
 	$mirror =~ s/\/$//;
-	open WGET, "wget -t1 --timeout=20 $options -O- \"$mirror/$filename\" |" or die "Cannot launch wget.\n";
+	open WGET, "wget -t5 --timeout=20 $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;