mirror of
https://git.dn42.dev/dn42/registry.git
synced 2025-05-06 20:55:23 +08:00
13 lines
180 B
Bash
Executable file
13 lines
180 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
|
|
|
|
utils/schema-check/dn42-schema.py scan data/ -m $1
|