]> git.eshelyaron.com Git - emacs.git/commitdiff
; Allow spaces in directory names for Git hooks
authorJim Porter <jporterbugs@gmail.com>
Fri, 5 May 2023 04:04:46 +0000 (21:04 -0700)
committerJim Porter <jporterbugs@gmail.com>
Fri, 5 May 2023 04:04:46 +0000 (21:04 -0700)
* build-aux/git-hooks/post-commit:
* build-aux/git-hooks/pre-push: Quote "$HOOKS_DIR" to allow spaces.

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

index 10f43b539aca5bac10fb26f905de2c27e4656966..12cae09206ab12d46cf8c17ab684f6057c20744a 100755 (executable)
@@ -44,4 +44,4 @@ else
 fi
 
 git rev-parse HEAD | $awk -v reason=post-commit \
-                          -f $HOOKS_DIR/commit-msg-files.awk
+                          -f "$HOOKS_DIR"/commit-msg-files.awk
index 8d5dde2bbaf5d363afe27a3240c798fa47a2637c..420aae3492b06078536fc2568f59171563134123 100755 (executable)
@@ -85,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 $HOOKS_DIR/commit-msg-files.awk
+' | $awk -v reason=pre-push -f "$HOOKS_DIR"/commit-msg-files.awk