8 lines
133 B
Bash
Executable File
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
|