logo

utils

Old programs, got split in utils-std and utils-extra git clone https://anongit.hacktivis.me/git/utils.git/
commit: eccaa97faea62773abd86bd2a2eb32cae9f3a6d1
parent ac6144ff3acb33a7f41955118148ec72255f46fe
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sat, 29 Nov 2025 19:24:19 +0100

git-hooks/post-update: pass "$@" to post-update.*

Diffstat:

Mgit-hooks/post-update2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/git-hooks/post-update b/git-hooks/post-update @@ -20,5 +20,5 @@ if test -f "${base}.git/post-update.env" ; then fi for i in ${base}.git/hooks/post-update.*; do - [[ -x $i ]] && echo "${PS4:-+}${i}" && $i + [[ -x $i ]] && echo "${PS4:-+}${i}" && $i "$@" done