Merge pull request 'check for a space in front of the maintainer name in fmt-my-stuff' (#3595) from g_here/registry:master into master

Reviewed-on: https://git.dn42.dev/dn42/registry/pulls/3595
Reviewed-by: schema-checker <schema-checker@noreply.dn42.dev>
This commit is contained in:
Simon Marsh 2024-03-19 08:47:36 +00:00
commit 0ae2622f58
1 changed files with 1 additions and 1 deletions

View File

@ -9,4 +9,4 @@ fi
BASE="$(readlink -f "$0" 2>/dev/null || python -c 'import os,sys;print(os.path.realpath(sys.argv[1]))' "$0")"
BASE="$(dirname "$BASE")"
grep -lr $1 "$BASE/data/" | while read line; do utils/schema-check/dn42-schema.py fmt -i "$line"; done
grep -lrE "(\s|:)$1(\s|\$)" "$BASE/data/" | while read line; do utils/schema-check/dn42-schema.py fmt -i "$line"; done