Skip to content

Commit

Permalink
adding logic to check broken links in dev release (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
andynog authored Apr 19, 2023
1 parent 7eaf453 commit a4ffb1b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ check-broken-links:
muffet --skip-tls-verification -e https://github.com -e https://fonts* http://0.0.0.0:8088/$${output_path} >> broken_links_$${output_path}.txt ; \
echo "------> Saved broken links for release $${output_path} in broken_links_$${output_path}.txt" ; \
done < VERSIONS
@if [ "${LOCAL_DOCS_REPO}" ]; then \
echo "------> Checking broken links for release dev" ; \
muffet --skip-tls-verification -e https://github.com -e https://fonts* http://0.0.0.0:8088/$${output_path} >> broken_links_dev.txt ; \
echo "------> Saved broken links for release dev in broken_links_dev.txt" ; \
fi
.PHONY: check-broken-links

# This builds the documentation site for cometbft (docs.cometbft.com)
Expand Down

0 comments on commit a4ffb1b

Please sign in to comment.