e21a142111
Change-Id: Iccccc91b0a44f92bcbb2442638a93e7624da112b
9 lines
203 B
Bash
Executable File
9 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Move to top level directory
|
|
REAL_PATH=$(realpath $0)
|
|
cd "$(dirname "$REAL_PATH")/.."
|
|
|
|
find . -name '*.yaml' -o -name '*.yml' -print0 |
|
|
xargs -0 python tools/validate-yaml.py || exit 1
|