#!/usr/bin/env bash # Local script runner for recursive markdown-link-check # Based on: https://github.com/gaurav-nelson/github-action-markdown-link-check/blob/master/entrypoint.sh link_check_container="markdown-link-check" if [ "${LINK_CHECK_CONTAINER}" != "" ]; then link_check_container="${LINK_CHECK_CONTAINER}" fi if [ -z "$(docker image list -q ${link_check_container})" ]; then echo "This script requires the markdown-link-check Docker image." echo "" echo "More information: https://github.com/tcort/markdown-link-check" exit 1 fi echo "==> Checking Markdown links..." error_file="markdown-link-check-errors.txt" output_file="markdown-link-check-output.txt" rm -f "$error_file" "$output_file" docker run --rm -i -t \ -v $(pwd):/github/workspace:ro \ -w /github/workspace \ --entrypoint /usr/bin/find \ "${link_check_container}" \ docs -type f -name "*.md" -exec /src/markdown-link-check --config .ci/.markdownlinkcheck.json --quiet --verbose {} \; \ | tee -a "${output_file}" docker run --rm -i -t \ -v $(pwd):/github/workspace:ro \ -w /github/workspace \ --entrypoint /usr/bin/find \ "${link_check_container}" \ website \( -type f -name "*.md" -or -name "*.markdown" \) -exec /src/markdown-link-check --config .ci/.markdownlinkcheck.json --quiet --verbose {} \; \ | tee -a "${output_file}" touch "${error_file}" PREVIOUS_LINE="" while IFS= read -r LINE; do if [[ $LINE = *"FILE"* ]]; then PREVIOUS_LINE=$LINE if [[ $(tail -1 "${error_file}") != *FILE* ]]; then echo -e "\n" >> "${error_file}" echo "$LINE" >> "${error_file}" fi elif [[ $LINE = *"✖"* ]] && [[ $PREVIOUS_LINE = *"FILE"* ]]; then echo "$LINE" >> "${error_file}" else PREVIOUS_LINE="" fi done < "${output_file}" if grep -q "ERROR:" "${output_file}"; then echo -e "==================> MARKDOWN LINK CHECK FAILED <==================" if [[ $(tail -1 "${error_file}") = *FILE* ]]; then sed '$d' "${error_file}" else cat "${error_file}" fi printf "\n" echo -e "==================================================================" exit 1 else echo -e "==================> MARKDOWN LINK CHECK SUCCESS <==================" printf "\n" echo -e "[✔] All links are good!" printf "\n" echo -e "===================================================================" fi rm -f "$error_file" "$output_file" exit 0