Fix validate-all-yaml.sh to check for files with yml extension
YAML files can have .yaml or .yml extension. Make `validate-all-yaml.sh` check for *.yml files in addition to *.yaml files since we now have some of these in our source tree. This should help to prevent bogus YAML files to land in the repository. Change-Id: Id59273680fc2424f7b636033b1d641efcaaeba22
This commit is contained in:
parent
005e4293e3
commit
bfe0d0e0e9
@ -3,6 +3,6 @@
|
|||||||
REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')")
|
REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')")
|
||||||
cd "$(dirname "$REAL_PATH")/.."
|
cd "$(dirname "$REAL_PATH")/.."
|
||||||
|
|
||||||
find . -name '*.yaml' -print0 |
|
find . -name '*.yaml' -o -name '*.yml' -print0 |
|
||||||
xargs -0 python tools/validate-yaml.py || exit 1
|
xargs -0 python tools/validate-yaml.py || exit 1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user