🐛 Analyze dead links

forgot to call the function...
This commit is contained in:
Frederik Hjorslev Poulsen 2020-04-04 22:21:45 +02:00
parent 422066f863
commit 686849d252
No known key found for this signature in database
GPG Key ID: 23DDBC920BDE66CF

View File

@ -21,7 +21,12 @@
}
}
}
# Output urls
return $unreachable
Write-Error -Message 'Dead links found'
}
if ($unreachable) {
# Output urls
return $unreachable
Write-Error -Message 'Dead links found'
}
}
$deadlinks = Test-MarkdownLinks -Path ".\readme.md"