heatclient has invalid json validation picks up

We shouldn't be scanning .tox dir anyway.

TrivialFix

Change-Id: If570abdfa69375091751199dcce637682e8de1ef
This commit is contained in:
SamYaple 2016-03-02 19:38:41 +00:00
parent 69c7decf49
commit d5d1b1b3dd
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@
REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')")
cd "$(dirname "$REAL_PATH")/.."
find . -name '*.json' -print0 |
find . -path ./.tox -prune -name '*.json' -print0 |
xargs -0 python tools/validate-json.py || exit 1