projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c61732
)
strip trailing / from download urls
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 6 Dec 2006 19:29:11 +0000
(19:29 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 6 Dec 2006 19:29:11 +0000
(19:29 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5701
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
scripts/download.pl
patch
|
blob
|
history
diff --git
a/scripts/download.pl
b/scripts/download.pl
index
882e907
..
8eb66f0
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";
This page took
0.025927 seconds
and
4
git commands to generate.