1
mirror of https://git.dn42.dev/dn42/registry.git synced 2024-11-17 02:48:38 +01:00
registry/check-my-stuff
2017-10-25 15:23:34 -06:00

15 lines
272 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 scan data/ -m "$1" || ( echo "Schema validation failed, please check above!" ; exit 1 )