From 28dfbb50f7f4dcde103a05b9f4081e436868103f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Wed, 25 Oct 2017 12:16:17 -0400 Subject: [PATCH] Remove the executable flag from the json files --- objects/ip-port/definition.json | 0 objects/person/definition.json | 0 objects/url/definition.json | 0 validate_all.sh | 11 +++++++++++ 4 files changed, 11 insertions(+) mode change 100755 => 100644 objects/ip-port/definition.json mode change 100755 => 100644 objects/person/definition.json mode change 100755 => 100644 objects/url/definition.json diff --git a/objects/ip-port/definition.json b/objects/ip-port/definition.json old mode 100755 new mode 100644 diff --git a/objects/person/definition.json b/objects/person/definition.json old mode 100755 new mode 100644 diff --git a/objects/url/definition.json b/objects/url/definition.json old mode 100755 new mode 100644 diff --git a/validate_all.sh b/validate_all.sh index f1fcb4f..1ed700c 100755 --- a/validate_all.sh +++ b/validate_all.sh @@ -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}: "