From 196f0a7ac849e617c1ea05c545a8fc5536a38292 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Wed, 25 Oct 2017 12:25:36 -0400 Subject: [PATCH] Remove the executable flag from the json files --- clusters/exploit-kit.json | 0 clusters/tds.json | 0 validate_all.sh | 14 +++++++++++++- 3 files changed, 13 insertions(+), 1 deletion(-) mode change 100755 => 100644 clusters/exploit-kit.json mode change 100755 => 100644 clusters/tds.json diff --git a/clusters/exploit-kit.json b/clusters/exploit-kit.json old mode 100755 new mode 100644 diff --git a/clusters/tds.json b/clusters/tds.json old mode 100755 new mode 100644 diff --git a/validate_all.sh b/validate_all.sh index 25db070..7d1a842 100755 --- a/validate_all.sh +++ b/validate_all.sh @@ -21,9 +21,21 @@ if ! [ $diffs -eq 0 ]; then echo "Please make sure you run ./jq_all_the_things.sh before commiting." if [ $# -eq 0 ]; then exit 1 - 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 for dir in clusters/*.json do