blob: 28f662e2b6648ea739f5c6a58bb77e75f4ebdca8 [file] [log] [blame]
#!/bin/bash
rc=0
for file in phosphor-regulators/config_files/*.json
do
phosphor-regulators/tools/validate-regulators-config.py \
-s phosphor-regulators/schema/config_schema.json \
-c "$file" || rc=1
done
exit $rc