summaryrefslogtreecommitdiffstats
path: root/scripts/download.pl
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-12-06 19:29:11 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-12-06 19:29:11 +0000
commit98910471a788906e794d00793e82d089cad58d1a (patch)
tree20137b342476cf8941a111c4f561c785ce1e824c /scripts/download.pl
parentca5ea6c2becc1ce5aa540f5099b82758dc3a802c (diff)
downloadmaster-31e0f0ae-98910471a788906e794d00793e82d089cad58d1a.tar.gz
master-31e0f0ae-98910471a788906e794d00793e82d089cad58d1a.tar.bz2
master-31e0f0ae-98910471a788906e794d00793e82d089cad58d1a.zip
strip trailing / from download urls
SVN-Revision: 5701
Diffstat (limited to 'scripts/download.pl')
-rwxr-xr-xscripts/download.pl3
1 files changed, 2 insertions, 1 deletions
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";