summaryrefslogtreecommitdiff
path: root/build-aux/git-hooks/post-commit
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/git-hooks/post-commit')
-rwxr-xr-xbuild-aux/git-hooks/post-commit4
1 files changed, 3 insertions, 1 deletions
diff --git a/build-aux/git-hooks/post-commit b/build-aux/git-hooks/post-commit
index 05f2d778b5c..10f43b539ac 100755
--- a/build-aux/git-hooks/post-commit
+++ b/build-aux/git-hooks/post-commit
@@ -34,6 +34,8 @@
### Code:
+HOOKS_DIR=$(dirname $0)
+
# Prefer gawk if available, as it handles NUL bytes properly.
if type gawk >/dev/null 2>&1; then
awk="gawk"
@@ -42,4 +44,4 @@ else
fi
git rev-parse HEAD | $awk -v reason=post-commit \
- -f ${GIT_DIR:-.git}/hooks/commit-msg-files.awk
+ -f $HOOKS_DIR/commit-msg-files.awk