projects
/
openwrt
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca5ea6c
)
strip trailing / from download urls
author
Felix Fietkau
<nbd@openwrt.org>
Wed, 6 Dec 2006 19:29:11 +0000
(19:29 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Wed, 6 Dec 2006 19:29:11 +0000
(19:29 +0000)
SVN-Revision: 5701
scripts/download.pl
patch
|
blob
|
history
diff --git
a/scripts/download.pl
b/scripts/download.pl
index 882e907d6499a5ee03e40617edf86d55d92385a2..8eb66f035361aeeaf32179a7a5d70f31fa3af86e 100755
(executable)
--- 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";