From 98910471a788906e794d00793e82d089cad58d1a Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 6 Dec 2006 19:29:11 +0000 Subject: [PATCH] strip trailing / from download urls SVN-Revision: 5701 --- scripts/download.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/download.pl b/scripts/download.pl index 882e907d64..8eb66f0353 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -37,7 +37,8 @@ sub download my $mirror = shift; my $options = $ENV{WGET_OPTIONS}; $options or $options = ""; - + + $mirror =~ s/\/$//; open WGET, "wget -t1 --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"; -- 2.30.2