strip trailing / from download urls
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 6 Dec 2006 19:29:11 +0000 (19:29 +0000)
committernbd <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

index 882e907..8eb66f0 100755 (executable)
@@ -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";