diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-12-06 19:29:11 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-12-06 19:29:11 +0000 |
commit | 98910471a788906e794d00793e82d089cad58d1a (patch) | |
tree | 20137b342476cf8941a111c4f561c785ce1e824c /scripts | |
parent | ca5ea6c2becc1ce5aa540f5099b82758dc3a802c (diff) | |
download | upstream-98910471a788906e794d00793e82d089cad58d1a.tar.gz upstream-98910471a788906e794d00793e82d089cad58d1a.tar.bz2 upstream-98910471a788906e794d00793e82d089cad58d1a.zip |
strip trailing / from download urls
SVN-Revision: 5701
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/download.pl | 3 |
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"; |