misp-taxonomies/validate_all.sh

26 lines
493 B
Bash
Raw Permalink Normal View History

2017-02-13 12:01:05 +01:00
#!/bin/bash
set -e
set -x
./jq_all_the_things.sh
diffs=`git status --porcelain | wc -l`
2017-07-25 16:27:10 +02:00
if ! [ $diffs -eq 0 ]; then
2022-02-17 19:15:42 +01:00
echo "Please make sure you run ./jq_all_the_things.sh before committing."
2017-02-13 12:01:05 +01:00
exit 1
fi
2017-08-16 11:39:58 +02:00
directories=`ls -d */ | wc -w`
manifest_entries=`cat MANIFEST.json | jq '.taxonomies | length'`
2017-09-01 00:49:13 +02:00
if ! [ $((directories-2)) -eq $manifest_entries ]; then
2017-08-16 11:39:58 +02:00
echo "MANIFEST isn't up-to-date."
exit 1
fi
python3 validate_all.py
2017-02-13 12:01:05 +01:00
2017-08-31 23:16:36 +02:00
jsonschema -i mapping/mapping.json schema_mapping.json