fuel-ccp-debian-base/tools/run-check-yaml-syntax.sh
Artur Zarzycki bba3884b61 Fix to pass linters tests
Change-Id: Ia46cc8505e80b0da43c94f7090191423cf7df6db
2016-07-06 15:49:13 +02:00

8 lines
133 B
Bash
Executable File

#!/bin/bash
### Temp yaml syntax checker script.
set -e
for file in $(find . -name '*.yaml'); do
yamllint -d relaxed $file
done