misp-galaxy/validate_all.sh

22 lines
308 B
Bash
Raw Normal View History

2017-02-13 18:32:53 +01:00
#!/bin/bash
set -e
set -x
./jq_all_the_things.sh
diffs=`git status --porcelain | wc -l`
if ! [ $diffs -eq 0 ]; then
echo "Please make sure you run ./jq_all_the_things.sh before commiting."
exit 1
fi
2017-02-13 18:52:54 +01:00
for dir in clusters/*.json
2017-02-13 18:32:53 +01:00
do
echo -n "${dir}: "
jsonschema -i ${dir} schema.json
echo ''
done