blob: 9aaa9f54d0e4267341f17b2c4a96c96b8d091829 [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