d5d1b1b3dd
We shouldn't be scanning .tox dir anyway. TrivialFix Change-Id: If570abdfa69375091751199dcce637682e8de1ef
9 lines
220 B
Bash
Executable File
9 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')")
|
|
cd "$(dirname "$REAL_PATH")/.."
|
|
|
|
find . -path ./.tox -prune -name '*.json' -print0 |
|
|
xargs -0 python tools/validate-json.py || exit 1
|
|
|