registry/install-commit-hook

21 lines
349 B
Plaintext
Raw Normal View History

2017-10-25 22:23:52 +02:00
#!/bin/sh
if [ $# -eq 0 ]
then
echo "Usage: $0 YOUR-MNT"
exit
fi
2017-12-31 20:03:56 +01:00
BASE="$(readlink -f "$0" 2>/dev/null || python -c 'import os,sys;print(os.path.realpath(sys.argv[1]))' "$0")"
2017-10-25 22:23:52 +02:00
BASE="$(dirname "$BASE")"
cd "$BASE" || exit 1
2017-10-25 23:23:34 +02:00
cat > .git/hooks/pre-commit <<EOF
2017-10-25 22:23:52 +02:00
#!/bin/sh
2017-10-25 23:23:34 +02:00
./check-my-stuff "$1" || exit 1
2017-10-25 22:23:52 +02:00
EOF
chmod +x .git/hooks/pre-commit