nιcнolaѕ wιlde 92814bc310
fix: ignore libbash dir
Signed-off-by: nιcнolaѕ wιlde <ncwilde43@gmail.com>
2022-09-22 17:02:13 -07:00

8 lines
367 B
Bash
Executable File

#!/bin/bash
set -e
set -o pipefail
readonly DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )/../" >/dev/null 2>&1 && pwd )
for f in $(find "${DIR}" -not -path '*.github*' -not -path '*cook*' -not -path '*libbash*' -name \*.md); do
docker run --rm -v /:/tmp:ro -i -w /tmp ghcr.io/tcort/markdown-link-check:stable "/tmp${f}" -c "/tmp${DIR}/mlc_config.json" || exit 1
done