summaryrefslogtreecommitdiff
path: root/tools/add-git-hook.sh
blob: 4ee919faf4239a8aecf737c198e54b6e45f24918 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -eu

cd "$MESON_SOURCE_ROOT"

if [ ! -f .git/hooks/pre-commit.sample -o -f .git/hooks/pre-commit ]; then
        exit 2 # not needed
fi

cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit
echo 'Activated pre-commit hook'