mirror of
https://git.dn42.dev/dn42/registry.git
synced 2024-12-25 23:43:44 +01:00
22 lines
433 B
Plaintext
22 lines
433 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ $# -eq 0 ]
|
||
|
then
|
||
|
echo "Usage: $0 YOUR-MNT"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
BASE="$(realpath "$0")"
|
||
|
BASE="$(dirname "$BASE")"
|
||
|
cd "$BASE" || exit 1
|
||
|
|
||
|
cat >> .git/hooks/pre-commit <<EOF
|
||
|
#!/bin/sh
|
||
|
./check-my-stuff "$1"
|
||
|
|
||
|
# Fail if not everything is PASS
|
||
|
./check-my-stuff JRB0001-MNT 2>/dev/null | grep -v PASS 1>/dev/null 2>&1 && { echo "Schema validation failed, please check above!" 1>&2; exit 1; }
|
||
|
EOF
|
||
|
chmod +x .git/hooks/pre-commit
|
||
|
|