]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix post-commit and pre-push hooks in worktrees again
authorJim Porter <jporterbugs@gmail.com>
Thu, 4 May 2023 16:22:40 +0000 (09:22 -0700)
committerJim Porter <jporterbugs@gmail.com>
Thu, 4 May 2023 16:22:40 +0000 (09:22 -0700)
* build-aux/git-hooks/post-commit:
* build-aux/git-hooks/pre-push: Use "$(dirname $0)" to get the hooks
directory.

build-aux/git-hooks/post-commit
build-aux/git-hooks/pre-push

index 05f2d778b5c27fe3d9321ca7e5ad21c79b170188..10f43b539aca5bac10fb26f905de2c27e4656966 100755 (executable)
@@ -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
index 6ff59102fd79ebcb79360f2646afad26b3dc5b1e..8d5dde2bbaf5d363afe27a3240c798fa47a2637c 100755 (executable)
@@ -31,6 +31,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"
@@ -83,4 +85,4 @@ $awk -v origin_name="$1" '
     # 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