mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-22 23:07:19 +00:00
Remove the executable flag from the json files
This commit is contained in:
parent
568557c1af
commit
196f0a7ac8
3 changed files with 13 additions and 1 deletions
0
clusters/exploit-kit.json
Executable file → Normal file
0
clusters/exploit-kit.json
Executable file → Normal file
0
clusters/tds.json
Executable file → Normal file
0
clusters/tds.json
Executable file → Normal file
|
@ -21,9 +21,21 @@ if ! [ $diffs -eq 0 ]; then
|
||||||
echo "Please make sure you run ./jq_all_the_things.sh before commiting."
|
echo "Please make sure you run ./jq_all_the_things.sh before commiting."
|
||||||
if [ $# -eq 0 ]; then
|
if [ $# -eq 0 ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
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 "Please make sure you run remove the executable flag on the json files before commiting: find -name "*.json" -exec chmod -x \"{}\" \\;"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Validate schemas
|
# Validate schemas
|
||||||
for dir in clusters/*.json
|
for dir in clusters/*.json
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in a new issue