This commit is contained in:
JMARyA 2024-03-17 18:05:36 +01:00
parent 9aadfafe1b
commit 12a6232ac7
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
2 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,5 @@
#!/bin/bash
mdq -c file.path --noheader . | while IFS= read -r md; do
mdlint --ignore-missing-frontmatter "schema.json" "$md"
mdlint --ignore-missing-frontmatter "schema.json" "$md" ||exit 1
done