broken-link-checker icon indicating copy to clipboard operation
broken-link-checker copied to clipboard

added summary of broken links at the end of cli

Open bjoernbg opened this issue 5 years ago • 3 comments

Hi, I've added a small summary of the broken links at the end of the command line output.

bjoernbg avatar Jun 19 '19 12:06 bjoernbg

Came here looking for something like this or #137. Is there any change to see these changes published? They seem like valuable additions to this tool!

dennisreimann avatar Jul 01 '20 15:07 dennisreimann

Looking forward to this getting in! blc is close to unusable when used to scan a large website for broken links.

chadoh avatar Oct 18 '20 17:10 chadoh

@chadoh As a workaround we've fixed it in our CI pipeline by running it with this command:

set -o pipefail; npm run linkcheck 2>/dev/null | grep "Getting links from\|BROKEN"

The linkcheck script runs blc with our configuration and the grep filters the relevant information.

Hope this is of help for you :)

dennisreimann avatar Oct 19 '20 13:10 dennisreimann