summaryrefslogtreecommitdiff
path: root/.git-hooks/pre-merge-commit
blob: efdecc9d7f8c5b64ceaba79cc469b035ee8576ca (plain)
1
2
3
4
5
6
7
#!/bin/bash -e

# Run the pre-commit hook on merges, too.

if [ -x .git-hooks/pre-commit ]; then
    exec .git-hooks/pre-commit
fi