forked from MISP/misp-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidate_all.sh
More file actions
executable file
·38 lines (26 loc) · 822 Bytes
/
validate_all.sh
File metadata and controls
executable file
·38 lines (26 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
set -e
set -x
./jq_all_the_things.sh
diffs=`git status --porcelain | wc -l`
if ! [ $diffs -eq 0 ]; then
echo "ERROR: Please make sure you run ./jq_all_the_things.sh before doing a PR."
exit 1
fi
# 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 "ERROR: Please make sure you run remove the executable flag on the json files before doing a PR: find -name "*.json" -exec chmod -x \"{}\" \\;"
exit 1
fi
for dir in objects/*/definition.json
do
echo -n "${dir}: "
jsonschema -i ${dir} schema_objects.json
echo ''
done
jsonschema -i relationships/definition.json schema_relationships.json
./tools/validate_opposites.sh
./unique_uuid.py
echo "Success: All is fine, please go ahead.".