mirror of
https://github.com/nicholaswilde/recipes.git
synced 2026-02-04 13:45:49 +00:00
fix: ignore libbash dir
Signed-off-by: nιcнolaѕ wιlde <ncwilde43@gmail.com>
This commit is contained in:
@ -2,6 +2,6 @@
|
||||
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*' -name \*.md); do
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user