blob: e7b58e0668ee890cfd6bcbb041a3fd23a1e7f419 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
set -e
if [ -x .git/hooks/pre-commit ]; then
if ! grep -q etc-pre-commit .git/hooks/pre-commit; then
echo "warning: .git/hooks/pre-commit needs to be manually modifed to run etc-pre-commit" >&2
fi
else
echo <<EOF >>.git/hooks/pre-commit
#!/bin/sh
# pre-commit hook for etckeeper. Calls etc-pre-commit to store metadata
# and do sanity checks.
set -e
etc-pre-commit
EOF
chmod +x .git/hooks/pre-commit
fi
|