summaryrefslogtreecommitdiffstats
path: root/scripts/download.pl
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-12-06 19:29:11 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-12-06 19:29:11 +0000
commit4c859c64689eb5978496f04a2502df11650dbe33 (patch)
tree9dc222d32fc3b7235a0e63a05b3b9846abd2afd0 /scripts/download.pl
parent2c61732f15b3dc3c3facd777caed25d39da94ae4 (diff)
strip trailing / from download urls
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5701 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 882e907d6..8eb66f035 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";