mirror of
https://github.com/curl/curl.git
synced 2026-07-25 14:07:16 +03:00
mdlinkcheck: exclude self from URL search
To avoid picking up the whitelist. Closes #19909
This commit is contained in:
parent
a7c974e038
commit
920319855d
1 changed files with 3 additions and 1 deletions
|
|
@ -197,7 +197,9 @@ sub checkurl {
|
|||
|
||||
for my $f (@files) {
|
||||
chomp $f;
|
||||
findlinks($f);
|
||||
if($f !~ /\/mdlinkcheck$/) {
|
||||
findlinks($f);
|
||||
}
|
||||
}
|
||||
|
||||
#for my $u (sort keys %url) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue