mirror of
https://git.dn42.dev/dn42/registry.git
synced 2025-07-19 00:46:59 +08:00
fix policy check for inetnum/routes
This commit is contained in:
parent
965cf57d26
commit
9a43218a58
2 changed files with 29 additions and 12 deletions
17
check-pol
Executable file
17
check-pol
Executable file
|
@ -0,0 +1,17 @@
|
|||
#!/bin/sh
|
||||
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue