misp-taxonomies/validate_all.sh

22 lines
310 B
Bash
Raw 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
2017-02-13 12:01:05 +01:00
echo "Please make sure you run ./jq_all_the_things.sh before commiting."
exit 1
fi
for dir in */machinetag.json
do
echo -n "${dir}: "
jsonschema -i ${dir} schema.json
echo ''
done