From: Richard Hartmann Date: Sun, 29 Jan 2012 03:13:19 +0000 (+0100) Subject: Tell people when hooks are executed X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/608f29ee269ce9c88ead67f722874b9cd7a3719b?hp=eff7e0e63171e4800dd24ccf0453e892fa16fb4f Tell people when hooks are executed --- diff --git a/vcsh b/vcsh index fdfeb84..41d5ed0 100755 --- a/vcsh +++ b/vcsh @@ -117,6 +117,7 @@ git_dir_exists() { hook() { for hook in $VCSH_HOOK_D/$1* $VCSH_HOOK_D/$VCSH_REPO_NAME.$1*; do [ -x "$hook" ] || continue + info "executing '$hook'" "$hook" done }