Remove the executable flag from the json files

pull/49/head
Raphaël Vinot 2017-10-25 12:16:17 -04:00
parent 3569c70407
commit 28dfbb50f7
4 changed files with 11 additions and 0 deletions

0
objects/ip-port/definition.json Executable file → Normal file
View File

0
objects/person/definition.json Executable file → Normal file
View File

0
objects/url/definition.json Executable file → Normal file
View File

View File

@ -12,6 +12,17 @@ if ! [ $diffs -eq 0 ]; then
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 "Please make sure you run remove the executable flag on the json files before commiting: find -name "*.json" -exec chmod -x \"{}\" \\;"
exit 1
fi
for dir in objects/*/definition.json
do
echo -n "${dir}: "