839ec629bf
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> Change-Id: I374f7427a4318d00ca474367818117e11789ec13
8 lines
224 B
Bash
Executable File
8 lines
224 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')")
|
|
cd "$(dirname "$REAL_PATH")/.."
|
|
|
|
find . -name '*.yaml' -o -name '*.yml' -print0 |
|
|
xargs -0 python tools/validate-yaml.py || exit 1
|