2c34214388
TrivialFix Change-Id: I1f03d428c380dfdbde5ef33e7ea43cbf5e9154ce
8 lines
219 B
Bash
Executable File
8 lines
219 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
|