Skip to content

Commit 4b8c3bc

Browse files
committed
mk-download.pl: drop the use of base=
It's old legacy we don't need set anymore. Ref: #654
1 parent ff7c709 commit 4b8c3bc

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

mk-download.pl

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,9 @@ sub filesize {
3434
}
3535

3636
open(HEAD, "<head.html");
37-
while(<HEAD>) {
38-
$_ =~ s/<title>curl<\/title>/<title>curl downloads<\/title>\n<base href=\"https:\/\/curl.se\">/;
39-
print $_;
40-
}
37+
print <HEAD>;
4138
close(HEAD);
4239

43-
my $nice = TodayNicelyEng();
44-
4540
my $ae;
4641
for(keys %allext) {
4742
$ae .= "$_ ";

0 commit comments

Comments
 (0)