* build-aux/git-hooks/post-commit:
* build-aux/git-hooks/pre-push: Use "$(dirname $0)" to get the hooks
directory.
### 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"
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
### 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"
# Print every SHA after oldref, up to (and including) newref.
system("git rev-list --first-parent --reverse " oldref ".." newref)
}
-' | $awk -v reason=pre-push -f ${GIT_DIR:-.git}/hooks/commit-msg-files.awk
+' | $awk -v reason=pre-push -f $HOOKS_DIR/commit-msg-files.awk