2017-02-13 11:15:51 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
|
|
|
./jq_all_the_things.sh
|
|
|
|
|
|
|
|
diffs=`git status --porcelain | wc -l`
|
|
|
|
|
2017-02-13 11:18:42 +01:00
|
|
|
if ! [ $diffs -eq 0 ]; then
|
2017-02-13 11:15:51 +01:00
|
|
|
echo "Please make sure you run ./jq_all_the_things.sh before commiting."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2017-10-25 18:16:17 +02:00
|
|
|
# remove the exec flag on the json files
|
|
|
|
find -name "*.json" -exec chmod -x "{}" \;
|
|
|
|
|
|
|
|
diffs=`git status --porcelain | wc -l`
|
|
|
|
|
|
|
|
if ! [ $diffs -eq 0 ]; then
|
|
|
|
echo "Please make sure you run remove the executable flag on the json files before commiting: find -name "*.json" -exec chmod -x \"{}\" \\;"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2017-02-13 11:18:42 +01:00
|
|
|
for dir in objects/*/definition.json
|
2017-02-13 11:15:51 +01:00
|
|
|
do
|
|
|
|
echo -n "${dir}: "
|
2017-08-11 12:19:52 +02:00
|
|
|
jsonschema -i ${dir} schema_objects.json
|
2017-02-13 11:15:51 +01:00
|
|
|
echo ''
|
|
|
|
done
|
|
|
|
|
2017-08-11 12:19:52 +02:00
|
|
|
jsonschema -i relationships/definition.json schema_relationships.json
|
|
|
|
|
2017-03-17 17:31:09 +01:00
|
|
|
./unique_uuid.py
|