1
mirror of https://git.dn42.dev/dn42/registry.git synced 2025-01-11 15:46:22 +01:00
registry/install-commit-hook
2017-10-25 15:23:34 -06:00

21 lines
263 B
Bash
Executable File

#!/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" || exit 1
EOF
chmod +x .git/hooks/pre-commit