1
mirror of https://git.dn42.dev/dn42/registry.git synced 2024-10-17 14:41:12 +02:00
registry/check-pol
2017-11-17 22:31:18 +00:00

19 lines
345 B
Bash
Executable File

#!/bin/bash
set -eo pipefail
if [ $# -eq 0 ]
then
echo "Usage: $0 COMMIT YOUR-MNT"
exit
fi
BASE="$(realpath "$0")"
BASE="$(dirname "$BASE")"
cd "$BASE" || exit 1
git diff --name-only $1 | while IFS='/' read -ra LINE; do
if [[ "${LINE[0]}" = "data" ]]; then
utils/schema-check/dn42-schema.py policy ${LINE[1]} ${LINE[2]} $2
fi
done