1
mirror of https://git.dn42.dev/dn42/registry.git synced 2024-11-17 02:48:38 +01:00
registry/check-my-stuff

15 lines
272 B
Plaintext
Raw Normal View History

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