1
mirror of https://git.dn42.dev/dn42/registry.git synced 2024-11-03 05:29:23 +01:00
registry/check-my-stuff

15 lines
275 B
Bash
Executable File

#!/bin/sh
if [ $# -eq 0 ]
then
echo "Usage: $0 YOUR-MNT"
exit
fi
BASE="$(realpath "$0")"
BASE="$(dirname "$BASE")"
cd "$BASE" || exit 1
utils/schema-check/dn42-schema.py -v scan data/ -m "$1" || ( echo "Schema validation failed, please check above!" ; exit 1 )