planetiler/scripts/check-doc-links.sh

8 wiersze
284 B
Bash
Czysty Zwykły widok Historia

2021-10-20 01:57:47 +00:00
#!/usr/bin/env bash
set -o errexit
set -o pipefail
set -o nounset
2022-08-02 11:20:49 +00:00
find . -name '*.md' -not -path '*/target/*' -not -path '*/planetiler-openmaptiles/*' -not -path '*/data/*' -print0 | xargs -I {} -n 1 -0 markdown-link-check --quiet --config .github/workflows/docs_mlc_config.json {}