aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgit-hooks7
1 files changed, 7 insertions, 0 deletions
diff --git a/git-hooks b/git-hooks
index 649d08a..bab2b5d 100755
--- a/git-hooks
+++ b/git-hooks
@@ -53,6 +53,7 @@ function run_hooks
shift 1
for hook in `list_hooks_in_dir "${dir}"`
do
+ export last_run_hook="${hook} $@"
if [ ! -z ${GIT_HOOKS_VERBOSE} ] ; then
echo -n "@@ Running hook: "
echo -n `basename \`dirname "${hook}"\``
@@ -132,12 +133,18 @@ function list_hooks
done
}
+function report_error {
+ echo "Hook failed: $last_run_hook"
+ exit 1
+}
+
case $1 in
run )
if [ ! -z "${GIT_DIR}" ] ; then
unset GIT_DIR
fi
shift
+ trap report_error ERR
run_hook "$@"
;;
--install|--uninstall )