From: Jim Porter Date: Fri, 5 May 2023 05:43:13 +0000 (-0700) Subject: ; Use a Bourne shell-compatible form for command substitution X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f204c4a6cfa77fdbb2573b728110576e206b0b20;p=emacs.git ; Use a Bourne shell-compatible form for command substitution * build-aux/git-hooks/post-commit: * build-aux/git-hooks/pre-push: Use `` instead of $(). --- diff --git a/build-aux/git-hooks/post-commit b/build-aux/git-hooks/post-commit index 12cae09206a..e02fee48db4 100755 --- a/build-aux/git-hooks/post-commit +++ b/build-aux/git-hooks/post-commit @@ -34,7 +34,7 @@ ### Code: -HOOKS_DIR=$(dirname $0) +HOOKS_DIR=`dirname "$0"` # Prefer gawk if available, as it handles NUL bytes properly. if type gawk >/dev/null 2>&1; then diff --git a/build-aux/git-hooks/pre-push b/build-aux/git-hooks/pre-push index 420aae3492b..a342814c1e3 100755 --- a/build-aux/git-hooks/pre-push +++ b/build-aux/git-hooks/pre-push @@ -31,7 +31,7 @@ ### Code: -HOOKS_DIR=$(dirname $0) +HOOKS_DIR=`dirname "$0"` # Prefer gawk if available, as it handles NUL bytes properly. if type gawk >/dev/null 2>&1; then